        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            height: 35px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #4285f4;
            background: rgba(66, 133, 244, 0.1);
        }

        .cta-button {
            background: linear-gradient(45deg, #4285f4, #34a853);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4);
        }

        .mobile-controls {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Banner */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-cta {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* How it works */
        .how-it-works {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 2px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        /* Desktop version - 4 columns */
        @media (min-width: 769px) {
            .steps {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .step {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #4285f4, #34a853);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1rem;
        }

        .step-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #4285f4;
        }

        .step h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .step p {
            color: #666;
            line-height: 1.6;
        }

        /* Service info */
/*05.10*/
    .service-info {
        padding: 80px 0;
        background: white;
        position: relative;
        overflow: hidden;
    }
    .service-info::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background-image: url('img/reviews-map.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right center;
        mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0) 100%);
        pointer-events: none;
        z-index: 0;
    }
    .service-info .container {
        position: relative;
        z-index: 1;
    }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .service-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .service-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        .benefits-list {
            list-style: none;
            margin-top: 2rem;
        }

        .benefits-list li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 2rem;
            display: flex;
            align-items: flex-start;
        }

        .benefits-list li::before {
            content: "";
            position: absolute;
            left: 0;
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%2334a853' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3e%3cpath d='m9 11 3 3L22 4'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
           background-position: center;
            background-size: contain;
            top: 50%;
            transform: translateY(-50%);
        }

        .reviews-preview {
            display: none;
            background: #f8f9fa;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .reviews-preview h3 {
            color: #777;
        }

        .review-example {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid #4285f4;
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #4285f4;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 1rem;
        }

        .reviewer-info h4 {
            margin: 0;
            color: #2c3e50;
        }

        .review-rating {
            color: #ffd700;
            margin-left: auto;
            display: flex;
            gap: 2px;
        }

        .review-rating .star {
            width: 16px;
            height: 16px;
            display: inline-block;
        }

        .review-text {
            color: #666;
            font-style: italic;
        }

        /* Pricing Plans */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .pricing .section-title {
            color: white;
        }

        .pricing .section-title::after {
            background: rgba(255,255,255,0.5);
        }

        .plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .plan {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .plan.popular {
            transform: scale(1.05);
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .plan.popular::before {
            content: "BELIEBT";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b6b;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .plan:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .plan h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #ffd700;
        }

        .plan-price span {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
        }

        .plan-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

/*05.10*/
        .payment-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0 0;
            padding: 1rem;
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
        }
        .payment-icon {
            width: 70px;
            height: 35px;
            background: white;
            border-radius: 5px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .payment-icon img {
            max-width: 50px;
            max-height: 25px;
            height: auto;
            display: block;
        }

        .plan-button {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }

        .plan-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: bold;
            color: #2c3e50;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            color: #4285f4;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #666;
            line-height: 1.6;
        }

        .faq-answer.active {
            padding: 0 2rem 1.5rem;
            max-height: 200px;
        }

        /* Benefits */
        .benefits {
            padding: 80px 0;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        /* Desktop version - center last two items */
        @media (min-width: 769px) {
            .benefits-grid {
                grid-template-columns: repeat(4, 1fr);
                justify-items: center;
            }
            
            .benefit-item:nth-child(5),
            .benefit-item:nth-child(6) {
                grid-row: 2;
            }
            
            .benefit-item:nth-child(5) {
                grid-column: 2;
            }
            
            .benefit-item:nth-child(6) {
                grid-column: 3;
            }
        }

        .benefit-item {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #4285f4;
        }

        .benefit-item h3 {
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        /* Contact Form */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact .section-title::after {
            background: rgba(255,255,255,0.5);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-button {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        /* About & Newsletter */
        .about-newsletter {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-section h2,
        .newsletter-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .about-section p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .newsletter-input {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .newsletter-input input {
            flex: 1;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
        }

        .newsletter-button {
            background: linear-gradient(45deg, #4285f4, #34a853);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #4285f4;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #4285f4;
        }

/* 06.10 Contact Info in Footer */
        .footer-section li span {
            color: #bbb;
            line-height: 1.6;
        }
        .footer-section li a {
            transition: color 0.3s ease;
        }
        .footer-section li a:hover {
            color: #4285f4;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 2rem;
            text-align: center;
            color: #888;
        }

/*05.10*/
        .footer-payment {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            /*flex-wrap: wrap;*/
        }
        .footer-payment-text {
            font-size: 0.9rem;
            color: #999;
            margin-right: 0.5rem;
        }
        .footer-payment-icon {
            width:60px;
            height: 30px;
            background: white;
            border-radius: 5px;
            padding: 6px 10px;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer-payment-icon:hover {
            transform: translateY(-3px);
        }
        .footer-payment-icon img {
            max-width: 40px;
            max-height: 20px;
            height: auto;
            display: block;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) and (orientation: portrait) {
/*05.10*/
            .service-info {
                padding: 0 0 80px 0;
            }
            .service-info::after {
                display: none;
            }
            .service-info::before {
                content: '';
                display: block;
                width: 100%;
                height: 300px;
                background-image: url('img/reviews-map.png');
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center center;
                margin-bottom: 40px;
            }

            .mobile-controls .cta-button {
                display: none;
            }
            .nav-links .mobile-cta-button {
                display: block;
                background: linear-gradient(45deg, #4285f4, #34a853);
                color: white;
                padding: 0.7rem 1.5rem;
                border-radius: 20px;
                text-decoration: none;
                font-weight: bold;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                box-shadow: 0 3px 12px rgba(66, 133, 244, 0.3);
                margin-top: 0.8rem;
                text-align: center;
            }

            .nav-links .mobile-cta-button:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4);
                color: white;
                background: linear-gradient(45deg, #4285f4, #34a853);
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                border-top: 1px solid #eee;
                flex-direction: column;
                padding: 1rem;
                gap: 0.5rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links a {
                padding: 0.8rem 1rem;
                border-radius: 8px;
                width: 100%;
                text-align: center;
            }
            
            .mobile-menu {
                display: block;
                color: #333;
                font-size: 1.5rem;
                cursor: pointer;
                padding: 0.5rem;
            }
            
            .cta-button {
                font-size: 0.9rem;
                padding: 0.6rem 1.2rem;
                margin-right: 0.5rem;
            }
            
            .logo img {
                max-height: 30px;
            }
            
            nav {
                position: relative;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .service-content,
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .plans {
                grid-template-columns: 1fr;
            }
            
            .plan.popular {
                transform: none;
            }
            
            .newsletter-input {
                flex-direction: column;
            }
        }
        @media (min-width: 769px) {
            .nav-links .mobile-cta-button {
                display: none;
            }
        }

        /* Page Content */
        .page-content {
            padding: 120px 0 80px;
            background: #f8f9fa;
            min-height: 100vh;
        }

        .page-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 4rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .page-title {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 2px;
        }

        .page-intro {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 3rem;
        }

        .page-intro h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .page-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .content-section {
            margin-bottom: 3rem;
        }

        .content-section h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }

        .content-section h3 {
            font-size: 1.4rem;
            color: #495057;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .content-section p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #666;
            text-align: justify;
        }

        .content-section ul, .content-section ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .content-section li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
            color: #666;
        }

        .highlight-box {
            background: rgba(66, 133, 244, 0.1);
            border-left: 4px solid #4285f4;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
            font-weight: 500;
            color: #2c3e50;
        }

        .warning-box {
            background: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }

        .warning-box p {
            margin-bottom: 0;
            font-weight: 500;
            color: #c92a2a;
        }

        .contact-info {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

        .contact-info h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 768px) and (orientation: portrait) {
            .page-container {
                padding: 2rem;
                margin: 0 1rem;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
        }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}