
        body, html {
            background-color: rgb(197, 142, 142);
            font-family: 'Times New Roman', Times, serif;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
         .navbar {
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98)) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: clamp(1.3rem, 3vw, 2rem);
            font-weight: 800;
            color: #fff !important;
            letter-spacing: -0.01em;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-brand:hover {
            color: #FF6B6B !important;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
        }

        .navbar-nav .nav-item {
            margin: 0 0.5rem;
        }

        .navbar-nav .nav-link {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            font-weight: 600;
            padding: 0.8rem 1.2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            color: rgba(255, 255, 255, 0.85) !important;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #FF6B6B 0%, #c58e8e 100%);
            transform: translateX(-50%);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 0 rgba(255, 107, 107, 0.5);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 0.5rem;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0), rgba(255, 107, 107, 0));
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .navbar-nav .nav-link:hover {
            background: rgba(255, 107, 107, 0.15);
            color: #FF6B6B !important;
            transform: translateY(-2px) scale(1.08);
            text-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
        }

        .navbar-nav .nav-link:hover::before {
            width: 100%;
            box-shadow: 0 2px 12px rgba(255, 107, 107, 0.4);
        }

        .navbar-nav .nav-link:hover::after {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(197, 142, 142, 0.1));
        }

        .navbar-toggler {
            border: 2px solid rgba(255, 255, 255, 0.3) !important;
            padding: 0.5rem !important;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-toggler:hover {
            background: rgba(197, 142, 142, 0.15) !important;
            border-color: #c58e8e !important;
        }

        .navbar-toggler:focus {
            box-shadow: none !important;
        }
        .wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .content {
            flex: 1;
            padding: clamp(1rem, 2vw, 2rem);
            padding-top: clamp(6rem, 10vw, 8rem);
            background: linear-gradient(135deg, rgb(197, 142, 142) 0%, rgba(197, 142, 142, 0.98) 100%);
        }

        .probio {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 250, 0.95));
            backdrop-filter: blur(10px);
            padding: clamp(1.5rem, 3vw, 2.5rem);
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            margin: clamp(1rem, 3vw, 2rem) auto;
            max-width: 1200px;
            width: 95%;
            border: 1.5px solid rgba(197, 142, 142, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .probio:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .probio header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(197, 142, 142, 0.15);
        }

        .probio header strong {
            font-size: clamp(1.3rem, 2.5vw, 1.6rem);
            color: #2c1810;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
            font-weight: 700;
        }

        .probio section {
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.05), rgba(197, 142, 142, 0.02));
            padding: clamp(1.2rem, 2vw, 1.8rem);
            border-radius: 16px;
            margin-top: 1.5rem;
            border: 1px solid rgba(197, 142, 142, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .probio section:hover {
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.08), rgba(197, 142, 142, 0.04));
        }

        .probio p {
            margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
            line-height: 1.7;
            color: #4b3c36;
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
        }

        .probio strong {
            color: #2c1810;
            font-weight: 700;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(1.5rem, 3vw, 2.5rem);
            margin-top: 2rem;
        }

        .info-box {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 245, 243, 0.95));
            padding: clamp(1.5rem, 2.5vw, 2rem);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            border: 1.5px solid rgba(197, 142, 142, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .info-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(197, 142, 142, 0.3);
        }

        .info-box h3 {
            color: #2c1810;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid rgba(197, 142, 142, 0.2);
            padding-bottom: 0.8rem;
            font-weight: 700;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            letter-spacing: -0.01em;
        }

        .info-box p {
            color: #4b3c36;
            font-size: clamp(0.95rem, 1.5vw, 1rem);
            line-height: 1.6;
        }

        .info-box a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 600;
            border-bottom: 2px solid #FF6B6B;
        }

        .info-box a:hover {
            color: #FF6B6B;
        }

        @media (max-width: 1024px) {
            .navbar-brand {
                font-size: 1.5rem;
            }

            .navbar-nav .nav-link {
                font-size: 1rem;
                padding: 0.7rem 1rem;
            }
        }

        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 1.3rem;
            }

            .navbar-nav .nav-link {
                font-size: 0.95rem;
                padding: 0.6rem 0.8rem;
            }

            .offcanvas-title {
                font-size: 1.4rem;
            }

            .offcanvas-body .nav-link {
                font-size: 1rem !important;
                padding: 0.9rem 1.2rem !important;
            }

            .content {
                padding-top: 80px;
            }

            .probio {
                padding: 1.5rem;
                margin: 0.5rem;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.1rem;
            }

            .offcanvas-end {
                width: 280px !important;
            }

            .offcanvas-title {
                font-size: 1.2rem;
            }

            .offcanvas-body .nav-link {
                font-size: 0.95rem !important;
                padding: 0.8rem 1rem !important;
            }

            .content {
                padding: 10px;
                padding-top: 80px;
            }

            .probio {
                padding: 1.2rem;
                margin: 0.3rem;
            }

            .probio p {
                font-size: 0.9rem;
            }
        }

        .wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        footer {
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98));
            color: white;
            text-align: center;
            padding: clamp(1.5rem, 2vw, 2rem);
            border-top: 1px solid rgba(197, 142, 142, 0.2);
            font-size: 0.95rem;
            margin-top: auto;
            width: 100%;
        }

        .footer-container {
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98));
            color: white;
            padding: 5rem 2rem 3rem;
            border-top: 1px solid rgba(197, 142, 142, 0.2);
            margin-top: auto;
            width: 100%;
        }

        /* Sosyal Medya İkonları (Navbar Ortasında) */
        .social-links {
            display: flex;
            justify-content: center;
           
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .social-links img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: transform 0.3s ease;
            border: 2px solid white;  
            border-radius: 50%;
            padding: 2px;
            margin: 2px;
            
        }

        .social-links img:hover {
            transform: scale(1.2);
        }

         .navbar {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.85) !important;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
            padding: 15px 0;
        }

        .offcanvas-end {
            width: 300px !important;
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98)) !important;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-left: 2px solid rgba(197, 142, 142, 0.15);
        }

        .offcanvas-header {
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.12), rgba(197, 142, 142, 0.06));
            padding: 1.5rem;
            position: relative;
            border-bottom: 1px solid rgba(197, 142, 142, 0.15);
        }

        .offcanvas-logo {
            width: clamp(40px, 8vw, 60px);
            height: clamp(40px, 8vw, 60px);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .offcanvas-logo:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .offcanvas-header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #FF6B6B, #c58e8e, transparent);
            animation: headerGlow 2s ease-in-out infinite;
        }

        @keyframes headerGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .btn-close-white {
            position: relative;
            width: 35px !important;
            height: 35px !important;
            opacity: 1 !important;
            padding: 0 !important;
            background: rgba(197, 142, 142, 0.1) !important;
            margin: 0 !important;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-close-white::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 2px;
            background: white;
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .btn-close-white::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 2px;
            background: white;
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .btn-close-white:hover {
            background: rgba(197, 142, 142, 0.2) !important;
            transform: rotate(90deg);
        }

        .offcanvas-body {
            padding: 1.5rem;
            background: linear-gradient(180deg, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0.98) 100%);
        }

        .offcanvas-body .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-size: 1.1rem !important;
            padding: 1rem 1.5rem !important;
            margin: 0.8rem 0;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
            background: rgba(255, 255, 255, 0.08);
        }

        .offcanvas-body .nav-link:hover {
            background: transparent !important;
            transform: translateX(8px);
            color: #FF6B6B !important;
        }

        /* Footer Stilleri */
        .footer-container {
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98));
            color: white;
            padding: 5rem 2rem 3rem;
            border-top: 1px solid rgba(197, 142, 142, 0.2);
            margin-top: 3rem;
        }

        .footer-contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-map {
            height: 320px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(197, 142, 142, 0.15);
            border: 1.5px solid rgba(197, 142, 142, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-map:hover {
            box-shadow: 0 20px 48px rgba(197, 142, 142, 0.2);
        }

        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-section, .social-section {
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.12), rgba(197, 142, 142, 0.06));
            padding: 2rem;
            border-radius: 16px;
            border: 1.5px solid rgba(197, 142, 142, 0.15);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-section:hover, .social-section:hover {
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.15), rgba(197, 142, 142, 0.08));
            border-color: rgba(197, 142, 142, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(197, 142, 142, 0.15);
        }

        .contact-section h3, .social-section h3 {
            color: #FFD700;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .contact-buttons, .social-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .whatsapp-button {
            background: linear-gradient(45deg, #25d366, #128C7E);
            border: none;
            padding: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 70px !important;
            height: 35px !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .calendar-button {
            font-size: 20px !important;
            line-height: 1 !important;
            padding: 0 !important;
            color: white;
            background: linear-gradient(45deg, #6c757d, #495057);
            border: none;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 70px !important;
            height: 35px !important;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .calendar-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-button img {
            width: 40px !important;
            height: 40px !important;
            padding: 5px;
        }

        .social-button {
            border: none;
            padding: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 70px !important;
            height: 35px !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .social-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .social-button img {
            width: 50px !important;
            height: 50px !important;
            padding: 5px;
        }

        .social-button-instagram {
            background: linear-gradient(45deg, #f09433, #bc1888);
        }

        .social-button-facebook {
            background: linear-gradient(45deg, #3b5998, #1e3c72);
        }

        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 4rem 1.5rem 2rem;
            }

            .footer-contact {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-map {
                height: 250px;
            }

            .contact-section, .social-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 3rem 1rem 1.5rem;
            }

            .footer-map {
                height: 200px;
                border-radius: 12px;
            }

            .contact-section, .social-section {
                padding: 1.2rem;
                border-radius: 12px;
            }
        }

        .modal-content {
            background-color: rgba(255, 255, 255, 0.26);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .modal-header {
            border-bottom: 1px solid rgb(0, 0, 0);
            padding: 1.5rem;
        }

        .modal-body {
            padding: 2rem;
        }
        
        .modal-body .form-label {
            color: #000000;
            font-weight: bold;
            font-size: 1rem;
        }

        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
        }

        .modal-content {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 250, 0.98));
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(197, 142, 142, 0.2);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(197, 142, 142, 0.25);
        }

        .modal-header {
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98));
            color: white;
            border-radius: 20px 20px 0 0;
            padding: 1.8rem;
            border-bottom: 1.5px solid rgba(197, 142, 142, 0.15);
        }

        .modal-header .modal-title {
            font-weight: 700;
            color: white;
            font-size: 1.4rem;
            letter-spacing: -0.01em;
        }

        .modal-body {
            padding: 2.5rem;
        }

        .modal-body .form-label {
            color: #2c1810;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            letter-spacing: -0.01em;
        }

        .form-control {
            border: 1.5px solid rgba(197, 142, 142, 0.2) !important;
            border-radius: 12px;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.95) !important;
            color: #2c1810 !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
        }

        .form-control:focus {
            border-color: #c58e8e !important;
            box-shadow: 0 0 0 3px rgba(197, 142, 142, 0.1) !important;
            background: white !important;
            transform: translateY(-2px);
        }

        .form-control::placeholder {
            color: rgba(44, 24, 16, 0.5);
        }

        .form-select {
            border: 1.5px solid rgba(197, 142, 142, 0.2) !important;
            border-radius: 12px;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.95) !important;
            color: #2c1810 !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-select:focus {
            border-color: #c58e8e !important;
            box-shadow: 0 0 0 3px rgba(197, 142, 142, 0.1) !important;
        }
         .why-us-section {
                        padding: 40px 0;
                        margin: 30px 0;
                        background: rgba(255, 255, 255, 0.1);
                        border-radius: 20px;
                    }

                    .section-title {
                        color: #4b2721;
                        font-size: 2.5rem;
                        font-weight: bold;
                        margin-bottom: 30px;
                        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
                    }

                    .features-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                        gap: 30px;
                        padding: 0 20px;
                    }

                    .feature-item {
                        text-align: center;
                        padding: 30px;
                        background: rgba(255, 255, 255, 0.1);
                        border-radius: 15px;
                        transition: all 0.3s ease;
                    }

                    .feature-item:hover {
                        transform: translateY(-10px);
                        background: rgba(255, 255, 255, 0.2);
                    }

                    .feature-icon {
                        font-size: 2.5rem;
                        margin-bottom: 15px;
                    }

                    .feature-item h4 {
                        color: #4b2721;
                        font-size: 1.4rem;
                        margin-bottom: 15px;
                        font-weight: bold;
                    }

                    .feature-item p {
                        color: #6d4141;
                        font-size: 1.1rem;
                        line-height: 1.6;
                    }

                    .highlight-text {
                        display: inline-block;
                        margin-top: 15px;
                        padding: 10px 20px;
                        background: linear-gradient(145deg, #4b2721, #6d4141);
                        color: white;
                        border-radius: 30px;
                        font-weight: bold;
                        font-size: 1.2rem;
                    }

                    .highlight-box {
                        border: 2px solid rgba(255, 255, 255, 0.1);
                        background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
                    }

                    .response-time {
                        display: block;
                        margin-top: 10px;
                        color: #4b2721;
                        font-style: italic;
                    }

                    .availability-text {
                        color: #4b2721;
                        font-weight: bold;
                        font-size: 1.1rem;
                    }

                    @media (max-width: 768px) {
                        .features-grid {
                            grid-template-columns: 1fr;
                        }
                        
                        .highlight-text {
                            font-size: 1rem;
                            padding: 8px 16px;
                        }
                    }
              
                    .welcome-section {
                        padding: 50px 20px;
                        position: relative;
                    }
                    
                    .welcome-icon {
                        width: 100px;
                        height: 100px;
                        margin: 0 auto 20px;
                        background: linear-gradient(145deg, #4b2721, #6d4141);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
                    }
                    
                    .welcome-icon .icon {
                        font-size: 3rem;
                        color: white;
                    }
                    
                    .welcome-title {
                        color: #4b2721;
                        font-size: 3rem;
                        margin-bottom: 20px;
                        font-family: 'Times New Roman', serif;
                        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
                    }
                    
                    .welcome-text {
                        font-size: 1.5rem;
                        color: #6d4141;
                        max-width: 800px;
                        margin: 0 auto;
                        line-height: 1.8;
                    }

                    .contact-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                        gap: clamp(1.5rem, 3vw, 2.5rem);
                        padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem);
                    }

                    .contact-box {
                        padding: clamp(1.8rem, 3vw, 2.5rem);
                        text-align: center;
                        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
                        backdrop-filter: blur(15px);
                        border-radius: 20px;
                        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
                        border: 1.5px solid rgba(197, 142, 142, 0.2);
                        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                        position: relative;
                        overflow: hidden;
                    }

                    .contact-box::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
                        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                        z-index: 0;
                    }

                    .contact-box:hover::before {
                        left: 100%;
                    }

                    .contact-box:hover {
                        transform: translateY(-12px);
                        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
                        border-color: rgba(255, 107, 107, 0.4);
                        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
                    }

                    .contact-box .icon {
                        font-size: clamp(2.5rem, 6vw, 3.5rem);
                        margin-bottom: clamp(1rem, 2vw, 1.5rem);
                        display: inline-block;
                        animation: iconBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                        position: relative;
                        z-index: 1;
                    }

                    @keyframes iconBounce {
                        0% { transform: scale(0.8); }
                        50% { transform: scale(1.1); }
                        100% { transform: scale(1); }
                    }

                    .contact-box:hover .icon {
                        animation: iconPulse 0.6s ease-in-out;
                    }

                    @keyframes iconPulse {
                        0%, 100% { transform: scale(1); }
                        50% { transform: scale(1.15); }
                    }

                    .contact-box h3 {
                        color: #2c1810;
                        font-size: clamp(1.4rem, 2.5vw, 1.8rem);
                        margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
                        font-family: 'Times New Roman', serif;
                        font-weight: 700;
                        letter-spacing: -0.01em;
                        position: relative;
                        z-index: 1;
                    }

                    .contact-box p {
                        color: #4b3c36;
                        font-size: clamp(1rem, 1.8vw, 1.2rem);
                        line-height: 1.8;
                        position: relative;
                        z-index: 1;
                    }

                    .phone-button {
                        display: inline-block;
                        padding: clamp(0.9rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
                        background: linear-gradient(135deg, #FF6B6B, #c58e8e);
                        color: white;
                        text-decoration: none;
                        border-radius: 30px;
                        font-size: clamp(1rem, 1.8vw, 1.3rem);
                        font-weight: 700;
                        margin-top: clamp(1rem, 2vw, 1.5rem);
                        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
                        letter-spacing: 0.5px;
                        position: relative;
                        z-index: 1;
                    }

                    .phone-button:hover {
                        transform: scale(1.08) translateY(-3px);
                        box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
                        color: white;
                        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
                    }

                    .phone-button::after {
                        content: '→';
                        display: inline-block;
                        margin-left: 8px;
                        transition: transform 0.3s ease;
                    }

                    .phone-button:hover::after {
                        transform: translateX(4px);
                    }

                    @media (max-width: 768px) {
                        .welcome-title {
                            font-size: 2.5rem;
                        }
                        
                        .welcome-text {
                            font-size: 1.2rem;
                        }
                        
                        .contact-grid {
                            grid-template-columns: 1fr;
                            gap: 20px;
                            padding: 20px;
                        }
                        
                        .contact-box {
                            padding: 20px;
                        }
                    }
