 :root {
            --primary: #800020;
            --primary-dark: #5a0017;
            --secondary: #D4AF37;
            --secondary-dark: #B8860B;
            --light: #FFF8F0;
            --light-gray: #F9F5F0;
            --dark: #2C1810;
            --gray: #6D6D6D;
            --success: #2E8B57;
            --shadow: 0 10px 30px rgba(128, 0, 32, 0.1);
            --shadow-hover: 0 20px 40px rgba(128, 0, 32, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 10px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 2.5rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        h3 {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            color: var(--primary);
        }
        
        p {
            margin-bottom: 1.2rem;
            color: var(--gray);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: clamp(60px, 8vw, 100px) 0;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
            gap: 10px;
            position: relative;
            overflow: hidden;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 60px);
        }
        
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
        }
        
        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 15px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            flex: 1;
            min-width: 200px;
            max-width: 280px;
        }
        
        .trust-badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .trust-badge i {
            color: var(--secondary);
            font-size: 1.5rem;
        }
        
        /* Header & Navbar */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 248, 240, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 5px 0;
            background-color: rgba(255, 248, 240, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }
        
        header.scrolled .navbar {
            padding: 10px 0;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: clamp(1.5rem, 3vw, 2.5rem);
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }
        
        .cta-button {
            margin-left: clamp(1rem, 3vw, 2rem);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--primary);
            background: none;
            border: none;
        }
        
        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }
        
        .floating-whatsapp a {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            transition: var(--transition);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }
        
        .floating-whatsapp a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        
        .floating-whatsapp i {
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            padding-top: clamp(140px, 15vw, 180px);
            padding-bottom: clamp(80px, 10vw, 120px);
            background: linear-gradient(rgba(255, 248, 240, 0.9), rgba(255, 248, 240, 0.9));
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23800020' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }
        
        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
            color: var(--dark);
        }
        
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 2rem;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            letter-spacing: 1px;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-top: 50px;
        }
        
        .video-container:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-hover);
        }
        
        .video-placeholder {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-direction: column;
            cursor: pointer;
        }
        
        .video-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        /* Journey Steps */
        .journey-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: clamp(40px, 6vw, 60px) 0;
        }
        
        .step {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
        }
        
        .step-number:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px dashed var(--secondary);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Formations Section */
        .formations {
            background-color: var(--light-gray);
        }
        
        .formations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .formation-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .formation-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .formation-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .formation-img {
            height: 220px;
            background-color: var(--primary);
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .formation-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(128, 0, 32, 0.2), rgba(128, 0, 32, 0.7));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            color: white;
        }
        
        .formation-duration {
            background-color: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .formation-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .formation-content h3 {
            margin-bottom: 15px;
            min-height: 60px;
            font-size: clamp(1.3rem, 3vw, 1.5rem);
        }
        
        .formation-features {
            list-style: none;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .formation-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
            font-size: 0.9rem;
        }
        
        .formation-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        
        .formation-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .old-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 1.1rem;
            margin-right: 15px;
        }
        
        .new-price {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .formation-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Testimonials Section */
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            margin: 0 20px;
            text-align: center;
            transition: var(--transition);
        }
        
        .student-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-color: var(--light-gray);
            border: 5px solid var(--light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .student-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .student-name {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .student-formation {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .quote {
            font-style: italic;
            position: relative;
            padding: 0 20px;
        }
        
        .quote:before, .quote:after {
            content: '"';
            font-size: 3rem;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
        }
        
        .quote:before {
            top: -20px;
            left: 0;
        }
        
        .quote:after {
            bottom: -40px;
            right: 0;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid #eee;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .slider-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .slider-dots {
            display: flex;
            gap: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .dot.active {
            background-color: var(--primary);
            transform: scale(1.3);
        }
        
        /* Certification Section */
        .certification-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .certification-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .certification-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        /* Map Section */
        .map-section {
            background-color: var(--light-gray);
        }
        
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
            font-size: clamp(1rem, 2vw, 1.1rem);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 500px;
        }
        
        .faq-toggle {
            color: var(--secondary);
            transition: var(--transition);
            font-size: 1.5rem;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        /* About Founder Section */
        .founder-section {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(128, 0, 32, 0.1));
        }
        
        .founder-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            align-items: center;
        }
        
        .founder-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .founder-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark), #1a0f0a);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .footer-about p {
            color: #ccc;
        }
        
        .footer-links h4, .footer-contact h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-contact p {
            color: #ccc;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
            width: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .developer {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .developer a {
            color: var(--secondary);
            text-decoration: none;
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 998;
            box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Spots Counter */
        .spots-counter {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 0, 0, 0.1);
            color: #d32f2f;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Mobile Responsive */
        @media (max-width: 1200px) {
            .certification-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .founder-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 992px) {
            .formations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                gap: 0;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 0 0 30px 0;
            }
            
            .cta-button {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .formations-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-badges {
                gap: 15px;
            }
            
            .trust-badge {
                padding: 12px 20px;
                font-size: 0.9rem;
                min-width: 160px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .floating-whatsapp a span {
                display: none;
            }
            
            .floating-whatsapp a {
                padding: 15px;
                border-radius: 50%;
            }
            
            .video-placeholder {
                height: 250px;
            }
            
            .video-placeholder i {
                font-size: 3rem;
            }
            
            .certification-img {
                height: 300px;
            }
            
            .founder-img {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding-top: 130px;
            }
            
            .btn {
                padding: 14px 28px;
            }
            
            .journey-steps {
                grid-template-columns: 1fr;
            }
            
            .formation-img {
                height: 180px;
            }
            
            .testimonial-card {
                padding: 30px 20px;
            }
            
            .slider-nav {
                gap: 20px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
            }
        }
        /* Simple Arabic Motto Design */
.arabic-motto {
    margin: 20px 0;
}


/* Style for the hero paragraph */
.hero-content p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    line-height: 1.6;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(128, 0, 32, 0.05));
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary);
    border-right: 4px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Add decorative quotation marks */
.hero-content p:before,
.hero-content p:after {
    content: '"';
    font-size: 2.5rem;
    color: var(--secondary);
    opacity: 0.5;
    position: absolute;
    font-family: 'Playfair Display', serif;
}

.hero-content p:before {
    top: 5px;
    left: 15px;
}

.hero-content p:after {
    bottom: 5px;
    right: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-content p {
        font-size: 1.2rem;
        padding: 15px;
        margin: 20px 0;
    }
    
    .hero-content p:before,
    .hero-content p:after {
        font-size: 2rem;
    }
}
/* privacy */
.privacy-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}