/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003087;
    --secondary-blue: #0052CC;
    --accent-red: #e74c3c;
    --light-gray: #f4f4f4;
    --dark-gray: #333;
    --white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #003087 0%, #0052CC 100%);
    --gradient-hero: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-accent {
    background: var(--accent-red);
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 1.5rem;
}

.tagline {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: -5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav a:hover,
.nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-hero);
    color: var(--white);
    padding: 50px 20px 920px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23003087" opacity="0.1" x="0" y="0" width="100" height="100" transform="rotate(45 50 50)"/><rect fill="%230052CC" opacity="0.1" x="200" y="100" width="80" height="80" transform="rotate(30 240 140)"/><rect fill="%23e74c3c" opacity="0.1" x="400" y="50" width="60" height="60" transform="rotate(60 430 80)"/></svg>');
    animation: float 20s infinite linear;
    opacity: 0.3;
    z-index: 0;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 48, 135, 0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.anniversary-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.countdown-header {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 20px 0 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-red);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 30px auto;
    max-width: 800px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    margin-top: 20px;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    margin-bottom: 30px;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px 80px;
    background: var(--white);
    position: relative;
    scroll-margin-top: 100px;
    z-index: 2;
}

.services-overview .section-title,
.featured-projects .section-title,
.news-section .section-title {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 0 auto 50px;
    box-shadow: 0 4px 15px rgba(0, 48, 135, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 48, 135, 0.15);
    border-color: var(--secondary-blue);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Featured Projects */
.featured-projects {
    padding: 120px 20px 80px;
    background: var(--light-gray);
    position: relative;
    scroll-margin-top: 100px;
    z-index: 2;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.project-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #f8f9fa;
}

.project-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.2) rotate(10deg);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.project-info p {
    color: #666;
    font-size: 0.95rem;
}

/* News Section */
.news-section {
    padding: 120px 20px 80px;
    background: var(--white);
    position: relative;
    scroll-margin-top: 100px;
    z-index: 2;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-blue);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-date {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-card h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--primary-blue);
    gap: 12px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 35px;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 48, 135, 0.3);
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-red);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 8px;
    color: var(--accent-red);
}

.footer-section .address-line {
    display: flex;
    align-items: flex-start;
}

.footer-section .address-line i {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-section .address-line span {
    display: inline-block;
}

.footer-section .address-line a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .address-line a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .badge-number {
        font-size: 3rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        padding: 15px 20px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.project-card,
.news-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Page-specific styles */
.page-header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 20px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 60px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* Service Detail Cards */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-detail-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-blue);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 48, 135, 0.15);
}

.service-detail-icon {
    font-size: 3.5rem;
    color: var(--secondary-blue);
    margin-bottom: 25px;
}

.service-detail-card h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-detail-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-blue);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-red);
}

.product-icon {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.product-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.achievement-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.achievement-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #f8f9fa;
}

.achievement-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.15) rotate(5deg);
}

.achievement-content {
    padding: 30px;
}

.achievement-content h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.achievement-location {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.achievement-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: var(--light-gray);
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* History Section */
.history-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.history-text h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 25px;
}

.history-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.history-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vintage-photo {
    background: var(--gradient-blue);
    width: 300px;
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vintage-photo i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.vintage-photo p {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Timeline */
.timeline-section {
    margin: 80px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--secondary-blue);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-year {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

.timeline-item.highlight .timeline-content {
    background: var(--gradient-blue);
    color: var(--white);
}

.timeline-item.highlight .timeline-content h3 {
    color: var(--white);
}

.timeline-item.highlight .timeline-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Values Section */
.values-section {
    margin: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    margin: 80px 0;
    background: var(--light-gray);
    padding: 60px;
    border-radius: 15px;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.expertise-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.expertise-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Commitment Section */
.commitment-section {
    margin: 80px 0;
}

.commitment-content {
    max-width: 900px;
    margin: 40px auto;
}

.commitment-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
    font-size: 1.05rem;
}

.highlight-text {
    background: var(--light-gray);
    padding: 30px;
    border-left: 5px solid var(--accent-red);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center !important;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-form-container h2,
.contact-info-container h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-intro {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    min-width: 60px;
    display: flex;
    justify-content: center;
}

.info-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-content p {
    color: #666;
    line-height: 1.7;
}

.info-content a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
}

.info-content a:hover {
    color: var(--accent-red);
}

.social-media-section {
    margin-top: 30px;
}

.social-media-section h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-large.facebook {
    background: #1877f2;
}

.social-link-large.linkedin {
    background: #0a66c2;
}

.social-link-large.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-large:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link-large i {
    font-size: 1.5rem;
}

/* Map Section */
.map-section {
    margin: 60px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.map-note {
    text-align: center;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

.map-note i {
    color: var(--secondary-blue);
    margin-right: 5px;
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--accent-red);
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .history-intro {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        padding: 0 !important;
        justify-content: center !important;
        width: 60px;
    }

    .timeline-item:nth-child(even) .timeline-year {
        order: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 1;
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .services-detail-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}
