* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #285858;
            background-color: #F8F8F0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header limpio */
        .header {
            background: rgba(248, 248, 240, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(72, 136, 136, 0.1);
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo h2 {
            color: #488888;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .logo span {
            color: #758D99;
            font-size: 0.9rem;
            font-weight: 400;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
        }
        
        .nav-menu ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        
        .nav-menu li {
            list-style: none;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #285858;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #488888;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #488888;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #488888;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: #488888;
            z-index: 10000;
            transition: all 0.3s ease;
            box-shadow: 0 10px 27px rgba(72, 136, 136, 0.3);
            border-top: 3px solid #285858;
            opacity: 0;
            visibility: hidden;
        }
        
        .mobile-menu.active {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            background-color: #488888;
        }
        
        .mobile-menu li {
            margin: 0;
            width: 100%;
            background-color: #488888;
            border-bottom: 1px solid #285858;
        }
        
        .mobile-menu a {
            font-size: 1.2rem;
            padding: 1.5rem 1.5rem;
            display: block;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            box-sizing: border-box;
            background-color: #488888;
            text-align: center;
        }
        
        .mobile-menu a:hover {
            color: #F8F8F0;
            background-color: #285858;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #F8F8F0 0%, #E8C8C0 100%);
            padding: 120px 0 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            min-height: 80vh;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #285858;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .hero-content h2 {
            font-size: 1.5rem;
            color: #488888;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #758D99;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: #D8A858;
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #488888 0%, #285858 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(72, 136, 136, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(72, 136, 136, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: #488888;
            border: 2px solid #488888;
        }
        
        .btn-secondary:hover {
            background: #488888;
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .profile-image {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(72, 136, 136, 0.25);
            border: 6px solid #488888;
            background: linear-gradient(135deg, #F8F8F0 0%, #E8C8C0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 0 auto;
        }
        
        .profile-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: all 0.3s ease;
            filter: brightness(1.05) contrast(1.1);
        }
        
        .profile-photo:hover {
            transform: scale(1.02);
            filter: brightness(1.1) contrast(1.15);
        }
        
        /* Secciones generales */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: #285858;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #758D99;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .about {
            padding: 80px 0;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: #285858;
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .feature {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(72, 136, 136, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature i {
            font-size: 2.5rem;
            color: #488888;
            margin-bottom: 1rem;
        }
        
        .feature h4 {
            font-size: 1.3rem;
            color: #285858;
            margin-bottom: 1rem;
        }
        
        .feature p {
            color: #758D99;
            line-height: 1.6;
        }
        
        .approach {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F8F0 0%, #E8C8C0 100%);
        }
        
        .approach-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .approach-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(72, 136, 136, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .approach-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(72, 136, 136, 0.15);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #488888 0%, #285858 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 25px rgba(72, 136, 136, 0.3);
        }
        
        .card-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .approach-card h3 {
            font-size: 1.5rem;
            color: #285858;
            margin-bottom: 1rem;
        }
        
        .approach-card p {
            color: #758D99;
            line-height: 1.6;
        }
        
        .services {
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(72, 136, 136, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(72, 136, 136, 0.15);
            border-color: #488888;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #488888 0%, #285858 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 25px rgba(72, 136, 136, 0.3);
        }
        
        .service-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            color: #285858;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #758D99;
            line-height: 1.6;
        }
        
        .specialties {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F8F0 0%, #E8C8C0 100%);
        }
        
        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .specialty-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(72, 136, 136, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .specialty-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(72, 136, 136, 0.15);
            border-color: #488888;
        }
        
        .specialty-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #488888 0%, #285858 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 25px rgba(72, 136, 136, 0.3);
        }
        
        .specialty-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .specialty-card h3 {
            font-size: 1.5rem;
            color: #285858;
            margin-bottom: 1rem;
        }
        
        .specialty-card p {
            color: #758D99;
            line-height: 1.6;
        }
        
        .education {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F8F0 0%, #E8C8C0 100%);
        }
        
        .education-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .education-item {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(72, 136, 136, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .education-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(72, 136, 136, 0.15);
        }
        
        .education-item h3 {
            font-size: 1.3rem;
            color: #285858;
            margin-bottom: 0.5rem;
        }
        
        .education-item p {
            color: #758D99;
            font-size: 0.95rem;
        }

        /* Formulario Testimonios */
        .testimonial-form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F8F0 0%, #E8C8C0 100%);
        }
        .form-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(72, 136, 136, 0.1);
            padding: 2rem;
            border: 2px solid transparent;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        /* Que el bloque de valoración ocupe todo el ancho en desktop */
        .testimonial-form-section .form-grid .form-group:nth-child(3) {
            grid-column: 1 / -1;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #285858;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 14px;
            border-radius: 8px;
            border: 2px solid #E2E8F0;
            background: #fff;
            color: #285858;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
        }
        /* Mejora del select en móviles: no desborda y flecha consistente */
        .testimonial-form-section select {
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill='%23488888'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px 16px;
            padding-right: 40px;
            max-width: 100%;
        }
        .form-group textarea { resize: vertical; }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #488888;
            box-shadow: 0 0 0 4px rgba(72, 136, 136, 0.1);
        }
        .field-hint {
            color: #758D99;
            font-size: 0.9rem;
        }
        .checkbox-group {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
            margin: 0.5rem 0 1rem;
        }
        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: #488888;
        }
        .form-actions {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .privacy-note {
            color: #758D99;
            font-size: 0.9rem;
        }
        .hp { display: none !important; }

        .form-message { margin-bottom: 0.75rem; min-height: 1.25rem; }
        .form-message.success { color: #0f9d76; font-weight: 600; }
        .form-message.error { color: #d14b4b; font-weight: 600; }

        /* Colapsable */
        .collapsible {
            --radius: 12px;
        }
        .collapsible-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            border: 2px solid #E2E8F0;
            background: #fff;
            color: #285858;
            padding: 1rem 1.25rem;
            border-radius: var(--radius);
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(72, 136, 136, 0.06);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .collapsible-trigger:hover {
            border-color: #CFE4E4;
            box-shadow: 0 12px 28px rgba(72, 136, 136, 0.08);
            background: #FDFDF9;
        }
        .collapsible-trigger i { color: #488888; transition: transform 0.2s ease; }
        .collapsible-trigger[aria-expanded="true"] i { transform: rotate(180deg); }

        .collapsible-panel {
            margin-top: 0.75rem;
            border-radius: var(--radius);
            transition: height 0.25s ease, opacity 0.25s ease;
        }
        .collapsible-panel[hidden] { display: block; height: 0; overflow: hidden; opacity: 0; }
        .collapsible-panel:not([hidden]) { opacity: 1; }

        /* Testimonios */
        .testimonials {
            padding: 80px 0;
        }
        .testimonial-carousel {
            position: relative;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 1rem;
        }
        .testimonial-viewport {
            overflow: hidden;
            width: 100%;
        }
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
        }
        .testimonial-card {
            background: white;
            border: 2px solid transparent;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(72, 136, 136, 0.1);
            padding: 2rem;
            margin: 0 0.25rem;
        }
        .testimonial-empty {
            grid-column: 1 / -1;
            text-align: center;
            color: #758D99;
            margin-top: 1rem;
        }
        .testimonial-empty h4 { color: #285858; margin-bottom: 0.25rem; }
        .testimonial-quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #285858;
            margin-bottom: 1rem;
        }
        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            color: #758D99;
            font-size: 0.95rem;
        }
        .author-name {
            font-weight: 600;
            color: #488888;
        }
        .rating-display {
            display: inline-flex;
            gap: 4px;
            align-items: center;
            margin-left: 8px;
        }
        .rating-display .star {
            color: #D8A858;
            font-size: 1rem;
        }
        .rating-input {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .rating-input .star-btn {
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #C3CED6;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .rating-input .star-btn:hover { transform: scale(1.08); }
        .rating-input .star-btn.selected { color: #D8A858; }

        .rating-summary {
            text-align: center;
            color: #758D99;
            margin-top: -10px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .rating-summary .rating-display { display: inline-flex; margin-left: 8px; }
        .rating-summary .star { color: #D8A858; font-size: 1rem; }
        .rating-summary .star.muted { color: #C3CED6; }

        /* Promedio con medias estrellas */
        .rating-stars { position: relative; display: inline-block; line-height: 1; margin-left: 8px; }
        .rating-stars .bg { color: #C3CED6; }
        .rating-stars .fg { color: #D8A858; position: absolute; left: 0; top: 0; white-space: nowrap; overflow: hidden; }

        /* Responsive fixes para móvil */
        @media (max-width: 1024px) {
            .testimonial-form-section .form-grid {
                grid-template-columns: 1fr !important;
                grid-auto-flow: row;
            }
            .testimonial-form-section .form-group { min-width: 0; }
            .testimonial-form-section select { background-position: right 10px center; }
        }
        @media (max-width: 768px) {
            .testimonial-form-section .form-grid {
                grid-template-columns: 1fr !important;
                grid-auto-flow: row;
            }
            .testimonial-form-section .form-group { min-width: 0; }
            .testimonial-form-section select { background-position: right 10px center; }
        }
        .carousel-button {
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
            border-radius: 50%;
            background: #488888;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(72, 136, 136, 0.25);
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .carousel-button:hover { transform: scale(1.05); background: #285858; }
        .carousel-button:active { transform: scale(0.97); }

        .carousel-dots {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #B8C8C8;
            border: none;
            cursor: pointer;
        }
        .dot.active { background: #488888; }

        /* Ocultar controles si no hay slides */
        .testimonial-carousel:has(.testimonial-track:empty) .carousel-button,
        .testimonial-carousel:has(.testimonial-track:empty) .carousel-dots {
            visibility: hidden;
            pointer-events: none;
        }

        /* Resaltar nuevo testimonio */
        .highlight-new {
            box-shadow: 0 0 0 3px rgba(72, 136, 136, 0.35), 0 15px 35px rgba(72, 136, 136, 0.2);
            transition: box-shadow 0.3s ease;
        }
        
        .contact {
            padding: 80px 0;
        }
        
        .contact-content {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .contact-info {
            max-width: 600px;
            width: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(72, 136, 136, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact-item i {
            font-size: 2rem;
            color: #488888;
            margin-right: 1.5rem;
            width: 50px;
            text-align: center;
        }
        
        .contact-item h4 {
            font-size: 1.2rem;
            color: #285858;
            margin-bottom: 0.5rem;
        }
        
        .contact-item p {
            color: #758D99;
        }
        
        .footer {
            background: #285858;
            color: white;
            padding: 3rem 0 1rem;
            position: relative;
        }
        
        .whatsapp-link {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-link:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-info h3 {
            color: #F8F8F0;
            margin-bottom: 1rem;
        }
        
        .footer-info p {
            color: #B8C8C8;
            line-height: 1.6;
        }
        
        .footer-contact p {
            color: #B8C8C8;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 0.5rem;
            color: #488888;
        }
        
        .footer-bottom {
            border-top: 1px solid #488888;
            padding-top: 1rem;
            text-align: center;
        }
        
        .footer-bottom p {
            color: #B8C8C8;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none !important;
            }
            
            .hamburger {
                display: flex !important;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                padding: 0 15px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .hero-content h2 {
                font-size: 1.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .profile-image {
                width: 280px;
                height: 280px;
                margin: 2rem auto;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 15px;
            }
            
            .about-text h3 {
                font-size: 1.6rem;
            }
            
            .about-text p {
                font-size: 1rem;
            }
            
            .feature {
                padding: 1.2rem;
            }
            
            .feature h4 {
                font-size: 1rem;
            }
            
            .feature p {
                font-size: 0.9rem;
            }
            
            .approach-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 15px;
            }
            
            .approach-card {
                padding: 2rem;
            }
            
            .approach-card h3 {
                font-size: 1.3rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 15px;
            }
            
            .service-card {
                padding: 2rem;
            }
            
            .service-card h3 {
                font-size: 1.2rem;
            }
            
            .service-card p {
                font-size: 0.95rem;
            }
            
            .specialties-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 15px;
            }
            
            .specialty-card {
                padding: 2rem;
            }
            
            .specialty-card h3 {
                font-size: 1.3rem;
            }
            
            .specialty-card p {
                font-size: 0.95rem;
            }
            
            .education-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 15px;
            }
            
            .education-item {
                padding: 1.5rem;
            }
            
            .education-item h3 {
                font-size: 1rem;
            }
            
            .education-item p {
                font-size: 0.9rem;
            }
            
            .contact-content {
                flex-direction: column;
                gap: 2rem;
                padding: 0 15px;
                justify-content: center;
                align-items: center;
            }
            
            .contact-info {
                width: 100%;
                max-width: 100%;
            }
            
            .contact-item {
                padding: 1rem;
            }
            
            .contact-item h4 {
                font-size: 1rem;
            }
            
            .contact-item p {
                font-size: 0.9rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 15px;
            }
            
            .footer-info h3 {
                font-size: 1.2rem;
            }
            
            .footer-info p {
                font-size: 0.9rem;
            }
            
            .footer-contact p {
                font-size: 0.9rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .container {
                padding: 0 15px;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-menu {
                display: none !important;
            }
            
            .hamburger {
                display: none !important;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-container {
                gap: 2rem;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .about-content {
                gap: 3rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .specialties-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .approach-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .education-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .header {
                padding: 0;
            }
            
            .nav-container {
                padding: 0 10px;
                height: 70px;
            }
            
            .logo h2 {
                font-size: 1rem;
            }
            
            .logo span {
                font-size: 0.8rem;
            }
            
            .hero {
                padding: 100px 0 60px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content h2 {
                font-size: 1.1rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-description {
                font-size: 0.9rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .profile-image {
                width: 250px;
                height: 250px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 0.9rem;
            }
            
            .about-text h3 {
                font-size: 1.4rem;
            }
            
            .about-text p {
                font-size: 0.9rem;
            }
            
            .feature {
                padding: 1rem;
            }
            
            .feature h4 {
                font-size: 0.9rem;
            }
            
            .feature p {
                font-size: 0.8rem;
            }
            
            .approach-card {
                padding: 1.5rem;
            }
            
            .approach-card h3 {
                font-size: 1.2rem;
            }
            
            .approach-card p {
                font-size: 0.9rem;
            }
            
            .card-icon {
                width: 60px;
                height: 60px;
            }
            
            .card-icon i {
                font-size: 1.5rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
            
            .service-card h3 {
                font-size: 1.1rem;
            }
            
            .service-card p {
                font-size: 0.9rem;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }
            
            .service-icon i {
                font-size: 1.5rem;
            }
            
            .specialty-card {
                padding: 1.5rem;
            }
            
            .specialty-card h3 {
                font-size: 1.1rem;
            }
            
            .specialty-card p {
                font-size: 0.9rem;
            }
            
            .specialty-icon {
                width: 60px;
                height: 60px;
            }
            
            .specialty-icon i {
                font-size: 1.5rem;
            }
            
            .education-item {
                padding: 1.5rem;
            }
            
            .education-item h3 {
                font-size: 0.9rem;
            }
            
            .education-item p {
                font-size: 0.8rem;
            }
            
            .contact-item {
                padding: 1rem;
            }
            
            .contact-item h4 {
                font-size: 0.9rem;
            }
            
            .contact-item p {
                font-size: 0.8rem;
            }
            
            .contact-item i {
                font-size: 1.5rem;
                margin-right: 1rem;
            }
            
            .footer-info h3 {
                font-size: 1.1rem;
            }
            
            .footer-info p {
                font-size: 0.8rem;
            }
            
            .footer-contact p {
                font-size: 0.8rem;
            }
            
            .footer-bottom p {
                font-size: 0.8rem;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-content,
        .hero-image,
        .about-content,
        .approach-content,
        .services-grid,
        .education-content,
        .contact-content {
            animation: fadeInUp 0.8s ease-out;
        }
        
        html {
            scroll-behavior: smooth;
        }