/* About Page Styles */

/* Hero Section with Image and Title */
.about-hero {
    background: var(--background-light);
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.about-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-hero-image {
    flex: 0 0 300px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.owner-name {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* Main Content Sections */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding: 1rem;
    border-bottom: 2px solid #ccc;
    text-align: left;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    text-align: left;
}

.about-conclusion {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    font-weight: 500;
    color: #2c3e50;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 0;
    }
    
    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about-hero-image {
        flex: none;
        max-width: 250px;
    }
    
    .about-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding: 0 1rem 2rem;
    }
    
    .about-section h2 {
        font-size: 1.7rem;
        text-align: left;
        border-bottom: 2px solid #ccc;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .about-conclusion {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content {
        padding: 0 1rem;
    }
    
    .about-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-image {
        max-width: 200px;
    }
    
    .about-content {
        padding: 0 0.5rem 2rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
}
