                    /* ==================== GENEL AYARLAR ==================== */
        :root {
            /* Görseldeki renk paleti */
            --primary-teal: #008B8B;
            --primary-dark: #006666;
            --primary-light: #00CED1;
            --secondary-white: #ffffff;
            --text-dark: #2c3e50;
            --text-gray: #5a6c7d;
            --bg-light: #f8fafa;
            --border-color: #d1e7e7;
            --shadow: 0 8px 25px rgba(0, 139, 139, 0.1);
            --shadow-hover: 0 12px 35px rgba(0, 139, 139, 0.15);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--secondary-white);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* ==================== HEADER - STICKY NAVIGATION ==================== */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 139, 139, 0.08);
            z-index: 1000;
            transition: var(--transition);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            flex-direction: column;
            text-decoration: none;
        }
        
        .logo-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-teal);
            letter-spacing: 2px;
            line-height: 1.2;
        }
        
        .logo-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            color: var(--text-gray);
            font-weight: 400;
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            color: var(--primary-teal);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-teal);
            cursor: pointer;
        }
        
        /* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&h=1080&fit=crop') center/cover no-repeat;
            z-index: 0;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
            z-index: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(0, 139, 139, 0.85) 0%, 
                rgba(0, 102, 102, 0.75) 50%,
                rgba(0, 139, 139, 0.85) 100%);
            z-index: 1;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            z-index: 2;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 3;
        }
        
        .hero-text h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .hero-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            line-height: 1.9;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Montserrat', sans-serif;
        }
        
        .btn-primary {
            background: white;
            color: var(--primary-teal);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            font-weight: 700;
        }
        
        .btn-primary:hover {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-3px);
            color: var(--primary-dark);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary:hover {
            background: white;
            color: var(--primary-teal);
            transform: translateY(-3px);
        }
        
        /* Paket bölümündeki butonlar için özel stiller */
        .packages .btn-primary {
            background: var(--primary-teal);
            color: white;
            box-shadow: var(--shadow);
        }
        
        .packages .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-hover);
        }
        
        .packages .btn-secondary {
            background: white;
            color: var(--primary-teal);
            border: 2px solid var(--primary-teal);
        }
        
        .packages .btn-secondary:hover {
            background: var(--primary-teal);
            color: white;
        }
        
        .hero-image {
            position: relative;
            z-index: 3;
        }
        
        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 5px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        
        .hero-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
        }
        
        .hero-image img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
        }
        
        /* ==================== VIDEO SECTION ==================== */
        .video-section {
            padding: 6rem 2rem;
            background: white;
        }
        
        .video-container-wrapper {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .video-container {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 16px; /* tasarıma yakışır */
            background: #000;
        }
         /*Video eklendiğinde burayi sil*/
        .video-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover; /* TAM YAY */
            display: block;
        }
        /* video eklendiğinde burayı açacaksın, üsttekini sileceksin. 
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio 
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: var(--shadow-hover);
            border: 5px solid var(--primary-teal);
        }
        */

        .video-container iframe,
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* ==================== SECTIONS GENEL ==================== */
        section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        section.reveal {
            opacity: 1;
            transform: translateY(0);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-subtitle {
            color: var(--primary-teal);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .section-description {
            color: var(--text-gray);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* ==================== HİZMETLER ==================== */
        .services {
            background: var(--bg-light);
            padding: 6rem 2rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-teal);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-teal);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: var(--primary-dark);
        }
        
        .service-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .service-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* ==================== PAKETLER ==================== */
        .packages {
            background: white;
            padding: 6rem 2rem;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .package-card {
            background: white;
            border: 3px solid var(--border-color);
            border-radius: 15px;
            padding: 3rem 2rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--primary-teal);
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .package-card:hover {
            border-color: var(--primary-teal);
            box-shadow: var(--shadow-hover);
            transform: translateY(-10px);
        }
        
        .package-card:hover::before {
            transform: scaleX(1);
        }
        
        .package-card.featured {
            border-color: var(--primary-teal);
            box-shadow: var(--shadow-hover);
            background: linear-gradient(135deg, #f0f9f9 0%, white 100%);
        }
        
        .package-card.featured::before {
            transform: scaleX(1);
        }
        
        .package-badge {
            background: var(--primary-teal);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .package-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .package-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-teal);
            margin-bottom: 0.5rem;
        }
        
        .package-duration {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .package-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .package-features li:last-child {
            border-bottom: none;
        }
        
        .package-features i {
            color: var(--primary-teal);
            font-size: 1.1rem;
        }
        
        /* ==================== HAKKIMDA ==================== */
        .about {
            background: var(--bg-light);
            padding: 6rem 2rem;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-weight: 700;
        }
        
        .about-text p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .about-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .highlight-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .highlight-item:hover {
            border-color: var(--primary-teal);
            transform: translateY(-5px);
        }
        
        .highlight-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-teal);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }
        
        .highlight-text h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        
        .highlight-text p {
            font-size: 0.9rem;
            margin: 0;
        }
        
        .about-image-main {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            border: 5px solid var(--primary-teal);
        }
        
        .about-image-main img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        
        /* ==================== GALERİ ==================== */
        .gallery {
            background: white;
            padding: 6rem 2rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 3px solid transparent;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-teal);
        }
        
        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 139, 139, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 3rem;
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .lightbox-content img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 10000;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .lightbox-close:hover {
            background: var(--primary-teal);
        }
        
        /* ==================== İLETİŞİM ==================== */
        .contact {
            background: var(--bg-light);
            padding: 6rem 2rem;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        .contact-info {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
        }
        
        .contact-info h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-teal);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .contact-details a,
        .contact-details p {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-details a:hover {
            color: var(--primary-teal);
        }
        
        .map-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
            height: 100%;
            min-height: 500px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* ==================== FOOTER ==================== */
        .footer {
            background: #1e293b;
            border-top: 1px solid #334155;
            color: white;
            padding: 2.5rem 2rem 1.5rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-main {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .footer-main {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        .footer-left {
            text-align: center;
            max-width: 28rem;
        }
        
        @media (min-width: 768px) {
            .footer-left {
                text-align: left;
            }
        }
        
        .footer-description {
            color: #94a3b8;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .footer-social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            color: #94a3b8;
            margin-top: 1rem;
        }
        
        @media (min-width: 768px) {
            .footer-social-links {
                justify-content: flex-start;
            }
        }
        
        .footer-social-links a {
            color: #94a3b8;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .footer-social-links a:hover {
            color: #818cf8;
        }
        
        .footer-links {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
        }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: #818cf8;
        }
        
        .footer-right {
            text-align: right;
            user-select: none;
        }
        
        .footer-logo-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }
        
        .footer-logo-subtitle {
            color: #94a3b8;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        
        .footer-copyright {
            color: #64748b;
            font-size: 0.75rem;
            margin-top: 0.5rem;
        }
        
        .footer-credit {
            border-top: 1px solid #334155;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.75rem;
            color: #64748b;
        }
        
        .footer-credit a {
            color: #64748b;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-credit a:hover {
            color: #818cf8;
        }
        
        /* ==================== FLOATING WHATSAPP ==================== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            cursor: pointer;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 968px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow);
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content,
            .about-content,
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-text {
                text-align: center;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .hero-image {
                order: -1;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                min-height: 400px;
            }
        }
        
        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }
            
            .whatsapp-float {
                width: 55px;
                height: 55px;
                font-size: 1.7rem;
                bottom: 20px;
                right: 20px;
            }
            
            .logo-name {
                font-size: 1.3rem;
            }
        }