.profile-section {
    margin-top: 2rem;
}

.profile-header h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 45px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 90%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    flex-shrink: 0;
}

.profile-details {
    text-align: center;
    width: 100%;
}

.profile-details p {
    margin: 0.8rem 0;
    padding: 0.3rem;
    font-size: 1.05em;
    line-height: 1.5;
    color: #333;
}

.profile-details p strong {
    color: #333;
    margin-right: 0.5rem;
    font-weight: 600;
}

.edit-profile {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.profile-circle-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: inline-block;
}

/* About Page Components */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em;
}

.tech-category {
    flex: 1;
    min-width: 250px;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    background: #f9f9f9;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tech-list strong {
    display: block;
    margin-bottom: 0.5em;
    color: #3498db;
}

.tech-description {
    font-size: 0.9em;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2em;
}

.feature {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #3498db;
    margin-bottom: 0.5em;
}

.feature i {
    margin-right: 0.5em;
}

/* About page header styling */
.about-header {
    display: flex;
    align-items: center;
}

.about-logo-container {
    flex-shrink: 0;
}

.about-text {
    margin-left: 2rem;
}

.about-logo {
    height: 100px;
    width: auto;
}

/* Login Components*/
.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.login-logo {
    height: 80px;
    width: auto;
    margin-left: 1rem;
}

.login-title h2 {
    margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .tech-stack {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        flex-direction: column;
    }
    
    .profile-circle {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .profile-info {
        width: 95%;
        padding: 1.5rem;
    }
} 