/* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #35629B;
            --accent-yellow: #E4E371;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
        }

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

        /* Header & Navigation */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 2rem;
            color: var(--primary-blue);
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary-blue);
        }

        .logo-text p {
            font-size: 0.8rem;
            color: var(--text-light);
            font-style: italic;
        }

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

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #2c4a7a 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .cta-button {
            background: var(--accent-yellow);
            color: var(--text-dark);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Sections */
        section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        h2.section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 3rem;
            position: relative;
        }

        h2.section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-yellow);
            margin: 1rem auto;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .about-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-blue);
        }

        .about-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .values-list {
            list-style: none;
            margin-top: 1rem;
        }

        .values-list li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .values-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-yellow);
            font-weight: bold;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .team-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-card i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .team-card h3 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .team-card .specialty {
            color: var(--accent-yellow);
            font-weight: bold;
            margin-bottom: 1rem;
            background: var(--primary-blue);
            padding: 0.3rem;
            border-radius: 5px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

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

        .service-card:hover {
            transform: scale(1.05);
        }

        .service-icon {
            background: var(--primary-blue);
            color: white;
            padding: 2rem;
            text-align: center;
            font-size: 3rem;
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .service-price {
            background: var(--accent-yellow);
            padding: 0.5rem;
            border-radius: 5px;
            font-weight: bold;
            margin: 1rem 0;
            text-align: center;
        }

        /* Promotions Section */
        .promotions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .promo-card {
            background: linear-gradient(135deg, var(--primary-blue), #2c4a7a);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .promo-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-yellow);
            color: var(--text-dark);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .promo-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gallery-item {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-item i {
            font-size: 4rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .gallery-label {
            font-weight: bold;
            color: var(--primary-blue);
            margin-top: 1rem;
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .blog-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 4px solid var(--accent-yellow);
        }

        .blog-card h3 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .blog-card a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .blog-card a:hover {
            text-decoration: underline;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }

        .contact-card i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .whatsapp-button {
            background: #25D366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--accent-yellow);
            margin-bottom: 1rem;
        }

        .footer-section p, .footer-section a {
            color: white;
            text-decoration: none;
            display: block;
            margin: 0.5rem 0;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--accent-yellow);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

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

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

            .hero p {
                font-size: 1rem;
            }

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