    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html, body {
        width: 100%;
        font-family: 'Poppins', sans-serif;
        background-color: #ecf0f1;
        color: #34495e;
        overflow-x: hidden;
        scroll-behavior: smooth;
        padding-top: 50px; /* Adjust for fixed banner height */
    }

    /* Header styles */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 50px;
        background-color: #ffffff;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
    }

    .gold-text {
        color: #37db34;
        font-weight: 500;
    }

    .tagline {
        display: block;
        font-size: 9px;
        font-weight: 400;
        letter-spacing: 0.5px;
        color: #7f8c8d;
        margin-top: -2px;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    nav ul li a {
        text-decoration: none;
        color: #34495e;
        font-weight: 500;
        font-size: 15px;
        position: relative;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #3498db;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3498db;
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    .contact-btn {
        background-color: #e67e22;
        color: white;
        padding: 10px 20px;
        border-radius: 3px;
        font-weight: 500;
        transition: background-color 0.3s ease;
        animation: none;
    }

    .contact-btn:hover {
        background-color: #d35400;
    }

    /* Hero section */
    .hero {
        height: 90vh;
        background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)), url('https://www.e-caseconstruction.re/attachments/6htc4s89c8riqsp5izfjb6zlu/montage-de-lossature-sur-le-chantier-2.JPG') no-repeat center center/cover;
        display: flex;
        align-items: center;
        padding: 0 50px;
        color: white;
    }

    .hero-content {
        max-width: 700px;
        animation: fadeInUp 1s ease-out;
    }

    .hero h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 56px;
        margin-bottom: 20px;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 800;
    }

    .hero p {
        font-size: 16px;
        color: #7f8c8d;
        text-align: center;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
    }

    .hero-btn {
        padding: 14px 30px;
        border-radius: 3px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background-color: #e67e22;
        color: white;
        border: none;
    }

    .btn-primary:hover {
        background-color: #d35400;
        transform: translateY(-2px);
    }

    .btn-secondary {
        background-color: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Main content */
    .section {
        padding: 100px 50px;
    }

    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
        margin-bottom: 50px;
        text-align: center;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #2c3e50;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #e67e22;
    }

    .section-subtitle {
        font-size: 16px;
        color: #7f8c8d;
        text-align: center;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Property details */
    .property-details {
        background-color: white;
        display: flex;
        gap: 50px;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
        border: 1px solid #dde1e3;
    }

    .details-text {
        flex: 1;
    }

    .price {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .address {
        font-size: 16px;
        margin-bottom: 30px;
        color: #7f8c8d;
        flex: 1;
        margin-left: 30px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        background-color: rgba(52, 152, 219, 0.1);
        color: #3498db;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .feature-text h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .feature-text p {
        font-size: 14px;
        color: #777;
    }

    .details-description {
        line-height: 1.8;
        color: #555;
    }

    /* 3D Viewer Section */
    .model-viewer {
        background-color: #ffffff;
        border-top: 1px solid #dde1e3;
        border-bottom: 1px solid #dde1e3;
    }

    .viewer-container {
        position: relative;
        max-width: 1200px;
        height: 600px;
        margin: 0 auto;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid #dde1e3;
    }

    canvas {
        width: 320px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 4px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 20;
        overflow: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
        border: 1px solid #dde1e3;
        animation: none;
    }

    #container {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .property-info {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 320px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 4px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 20;
        overflow: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
        border: 1px solid #dde1e3;
        animation: none;
    }

    .property-info h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        margin: 0 0 5px 0;
        color: #3498db;
        text-transform: uppercase;
        font-weight: 700;
    }

    .property-info h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        margin: 0 0 15px 0;
        color: #2c3e50;
        font-weight: 600;
    }

    .property-info p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #34495e;
    }

    .property-features {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .feature {
        text-align: center;
    }

    .feature-value {
        font-size: 18px;
        font-weight: 500;
        color: #333;
    }

    .feature-label {
        font-size: 12px;
        color: #777;
    }

    .cta-button {
        display: block;
        width: 100%;
        padding: 12px;
        background: #e67e22;
        color: white;
        border: none;
        border-radius: 3px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
        text-transform: uppercase;
    }

    .cta-button:hover {
        background: #d35400;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .cta-button: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;
        z-index: -1;
    }

    .cta-button:hover:before {
        left: 100%;
    }

    #ui {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: rgba(255, 255, 255, 0.98);
        padding: 10px 15px;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        gap: 10px;
        align-items: center;
        z-index: 10;
        border: 1px solid #dde1e3;
    }

    #ui label {
        font-size: 13px;
        font-weight: 500;
        color: #34495e;
    }

    #ui select,
    #ui button,
    #ui input[type="file"]
     {
        background: #fff;
        color: #34495e;
        border: 1px solid #ccc;
        border-radius: 3px;
        padding: 8px 10px;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    #ui select:hover,
    #ui button:hover {
        background-color: #f8f9f9;
        border-color: #bbb;
    }
    
    .camera-controls {
        position: absolute;
        left: 30px;
        top: 30px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 10;
        border: 1px solid #dde1e3;
    }
    
    .camera-button {
        background: white;
        border: 1px solid #ccc;
        border-radius: 3px;
        padding: 8px 10px;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.2s ease;
        color: #34495e;
    }
    
    .camera-button:hover {
        background: #f8f9f9;
        border-color: #bbb;
        transform: translateY(-1px);
    }

    /* Amenities Section */
    .amenities {
        background-color: #ffffff;
    }

    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .amenity-card {
        background-color: #ffffff;
        border-radius: 4px;
        padding: 30px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #dde1e3;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 280px;
    }

    .amenity-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .amenity-card:hover .amenity-icon {
        transform: scale(1.1);
        color: #e67e22;
    }

    .amenity-icon {
        font-size: 36px;
        color: #3498db;
        margin-bottom: 20px;
        transition: transform 0.3s ease, color 0.3s ease;
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        background-color: #ecf0f1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .amenity-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
        color: #2c3e50;
    }
    
    .amenity-title:after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background-color: #e67e22;
        margin: 8px auto 0;
    }
    
    .amenity-card:hover .amenity-title:after {
      /* No change needed here, but could be used for hover effects */
    }

    .amenity-desc {
        font-size: 14px;
        color: #566573;
        line-height: 1.6;
        margin-bottom: 0;
        flex-grow: 1;
    }

    .amenity-detail {
        margin-top: 15px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .detail-label {
        font-weight: 600;
        color: #566573;
        margin-right: 5px;
    }

    .detail-value {
        color: #2c3e50;
        font-weight: 600;
    }

    /* Gallery section */
    .gallery {
        background-color: #ecf0f1;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-item {
        height: 250px;
        overflow: hidden;
        border-radius: 4px;
        position: relative;
        border: 1px solid #dde1e3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(44, 62, 80, 0.6);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-icon {
        color: white;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .gallery-label {
        position: static;
        background: none;
        padding: 0;
        border-radius: 0;
        font-size: 13px;
        font-weight: 500;
        color: white;
        text-align: center;
    }

    /* Contact section */
    .contact {
        background-color: #ffffff;
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 50px;
    }

    .contact-info {
        flex: 1;
    }

    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
        color: #2c3e50;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(230, 126, 34, 0.1);
        color: #e67e22;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-text {
        font-size: 15px;
        color: #34495e;
    }

    .contact-form {
        flex: 1;
        background-color: #ecf0f1;
        padding: 30px;
        border-radius: 4px;
        border: 1px solid #dde1e3;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #34495e;
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 3px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        background-color: #fff;
        color: #34495e;
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
         border-color: #3498db;
         outline: none;
         box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    }

    /* Footer */
    footer {
        background-color: #2c3e50;
        color: #bdc3c7;
        padding: 50px;
        text-align: center;
        border-top: 5px solid #3498db;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 26px;
        color: white;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .footer-logo .gold-text {
        color: #3498db;
        font-weight: 500;
    }

    .footer-logo .tagline {
        color: #bdc3c7;
        font-size: 9px;
        letter-spacing: 1px;
        margin-top: 0;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 14px;
    }

    .footer-links a:hover {
        color: #ffffff;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ecf0f1;
        transition: background-color 0.3s ease, color 0.3s ease;
        font-size: 16px;
    }

    .social-icon:hover {
        background-color: #e67e22;
        color: white;
    }

    .copyright {
        font-size: 13px;
        color: #95a5a6;
        margin-bottom: 20px;
    }

    /* Custom animations */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(0, 102, 204, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
    }

    /* Model cards */
    .model-variants {
        flex: 1;
        margin-left: 30px;
    }

    .model-variants h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 2px solid #ecf0f1;
    }

    .model-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .model-card {
        background: #ffffff;
        border-radius: 4px;
        padding: 20px;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        border-left: 4px solid #3498db;
        border: 1px solid #dde1e3;
        border-left-width: 4px;
    }

    .model-card:hover {
        transform: translateY(-3px) translateX(3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        border-left-color: #e67e22;
    }

    .model-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #e74c3c;
        color: white;
        font-size: 10px;
        font-weight: 600;
        padding: 3px 8px;
        border-radius: 3px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .model-card h4 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #2c3e50;
        font-weight: 600;
    }

    .model-size {
        font-weight: 500;
        color: #3498db;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .model-desc {
        color: #566573;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .model-link {
        display: inline-block;
        color: #e67e22;
        font-weight: 600;
        text-decoration: none;
        position: relative;
        font-size: 13px;
        text-transform: uppercase;
    }

    .model-link::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #e67e22;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .model-link:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* Technical Specifications Styles */
    .technical-specs {
        background-color: #ecf0f1;
    }

    .specs-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .specs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .specs-card {
        background: white;
        border-radius: 4px;
        padding: 0;
        box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        border: 1px solid #dde1e3;
        overflow: hidden;
    }

    .specs-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        color: #2c3e50;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dde1e3;
        font-weight: 600;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .specs-table {
        width: 100%;
        border-collapse: collapse;
    }

    .specs-table tr {
        border-bottom: 1px solid #ecf0f1;
    }

    .specs-table tr:last-child {
        border-bottom: none;
    }

    .specs-table td {
        padding: 10px 15px;
        font-size: 14px;
    }

    .specs-table td:first-child {
        color: #566573;
        font-weight: 500;
        width: 40%;
    }

    .specs-table td:last-child {
        color: #2c3e50;
        font-weight: 600;
        width: 60%;
    }

    .technical-details {
        background: white;
        border-radius: 4px;
        padding: 30px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        margin-top: 30px;
    }

    .technical-details h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        color: #2c3e50;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 600;
    }

    .details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .detail-column h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 17px;
        color: #3498db;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dde1e3;
        font-weight: 600;
    }

    .detail-column ul {
        list-style: none;
        padding: 0;
    }

    .detail-column ul li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #34495e;
        line-height: 1.6;
    }

    .detail-column ul li:before {
        content: '\f0da';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #e67e22;
    }

    @media (max-width: 768px) {
        header {
            padding: 15px 20px;
            flex-direction: column;
            align-items: flex-start;
        }
        nav ul {
            margin-top: 15px;
            gap: 15px;
            flex-wrap: wrap;
        }
        nav ul li a {
            font-size: 14px;
        }
        .contact-btn {
            padding: 8px 15px;
        }
        .hero {
            height: 80vh;
            padding: 0 20px;
        }
        .hero h1 {
            font-size: 42px;
        }
        .hero p {
            font-size: 16px;
        }
        .hero-btn {
            padding: 12px 20px;
            font-size: 14px;
        }
        .section {
            padding: 60px 20px;
        }
        .section-title {
            font-size: 28px;
        }
        .property-details {
            flex-direction: column;
            padding: 20px;
        }
        .model-variants {
            margin-left: 0;
            margin-top: 30px;
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
        .viewer-container {
            height: 450px;
        }
        .property-info {
            position: static;
            width: 100%;
            margin-top: 20px;
            border-radius: 4px;
        }
        #ui, .camera-controls {
            position: static;
            margin: 15px 0;
            flex-wrap: wrap;
            justify-content: center;
            border-radius: 4px;
        }
        .contact-container {
            flex-direction: column;
        }
        .footer-links {
            gap: 15px;
        }
    }

    /* Compliance Section */
    .compliance-section {
        background-color: #ffffff;
        padding: 80px 50px;
    }

    .compliance-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .compliance-card {
        display: flex;
        align-items: flex-start;
        background: #ffffff;
        border-radius: 4px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        border: 1px solid #dde1e3;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .compliance-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .compliance-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        margin-right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(52, 152, 219, 0.1);
        border-radius: 4px;
        padding: 5px;
        color: #3498db;
        font-size: 24px;
    }

    .compliance-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .compliance-content h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 17px;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 8px 0;
    }

    .compliance-content p {
        font-size: 14px;
        color: #566573;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .compliance-detail {
        background: #ecf0f1;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        display: inline-block;
        border: 1px solid #dde1e3;
    }

    .detail-label {
        font-weight: 600;
        color: #566573;
        margin-right: 5px;
    }

    .detail-value {
        color: #2c3e50;
        font-weight: 600;
    }

    .standards-table-container {
        margin-top: 50px;
        background-color: #ffffff;
        padding: 30px;
        border-radius: 4px;
        border: 1px solid #dde1e3;
        box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    }

    .standards-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 25px;
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #dde1e3;
    }

    .standards-table-wrapper {
        overflow-x: auto;
    }

    .standards-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }

    .standards-table th,
    .standards-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #ecf0f1;
    }

    .standards-table th {
        background-color: #f8f9f9;
        color: #34495e;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 13px;
    }

    .standards-table tbody tr:hover {
        background-color: #fdfefe;
    }

    .standards-table td:nth-child(1) {
        font-weight: 600;
        color: #2c3e50;
        width: 20%;
    }

    .standards-table td:nth-child(2) {
        color: #566573;
        width: 60%;
    }

    .standards-table td:nth-child(3) {
        font-weight: 500;
        color: #3498db;
        width: 20%;
    }

    .standards-note {
        margin-top: 25px;
        text-align: center;
        font-size: 13px;
        color: #7f8c8d;
    }

    .footer-badges {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-badge {
        display: inline-flex;
        align-items: center;
        background: #34495e;
        color: #bdc3c7;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

    .footer-badge i {
        margin-right: 6px;
        color: #3498db;
        font-size: 14px;
    }

    /* Process Carousel Styles */
    .process-carousel-container {
        max-width: 1000px;
        margin: 40px auto;
        position: relative;
    }

    .process-carousel {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        position: relative;
    }

    .process-slides {
        position: relative;
        height: 480px; /* Fixed height for slides */
        perspective: 1000px; /* Add perspective for 3D effect */
    }

    .process-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(50px);
        transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), 
                    transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                    visibility 0s linear 0.6s;
        backface-visibility: hidden; /* Prevent flickering during animations */
        will-change: transform, opacity; /* Optimize for animations */
    }

    .process-slide.active {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
        transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), 
                    transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                    visibility 0s linear 0s;
        z-index: 2;
    }

    .process-slide-inner {
        display: flex;
        height: 100%;
        padding: 40px;
    }

    .process-slide-number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 700;
        margin-right: 30px;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(41, 128, 185, 0.3);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .active .process-slide-number {
        transform: scale(1.05);
    }

    .process-slide-content {
        flex: 1;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s;
    }

    .active .process-slide-content {
        opacity: 1;
        transform: translateY(0);
    }

    .process-slide-content h3 {
        font-size: 24px;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        padding-bottom: 15px;
    }

    .process-slide-content h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, #3498db, #2980b9);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease-out 0.4s;
    }

    .active .process-slide-content h3:after {
        transform: scaleX(1);
    }

    .process-slide-icon {
        width: 60px;
        height: 60px;
        background-color: #ecf0f1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #3498db;
        font-size: 24px;
        transform: scale(0.8);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s,
                    background-color 0.3s ease;
    }

    .active .process-slide-icon {
        transform: scale(1);
        background-color: rgba(52, 152, 219, 0.1);
    }

    .process-slide-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #34495e;
        margin-bottom: 25px;
    }

    .process-features {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }

    .process-feature {
        background-color: #f8f9fa;
        border-radius: 4px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        border-left: 3px solid #3498db;
        transform: translateX(-20px);
        opacity: 0;
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    }

    .active .process-feature {
        transform: translateX(0);
        opacity: 1;
    }

    .active .process-feature:nth-child(1) {
        transition-delay: 0.4s;
    }

    .active .process-feature:nth-child(2) {
        transition-delay: 0.5s;
    }

    .active .process-feature:nth-child(3) {
        transition-delay: 0.6s;
    }

    .feature-icon {
        color: #3498db;
        margin-right: 8px;
    }

    .feature-text {
        font-size: 14px;
        color: #34495e;
        font-weight: 500;
    }

    /* Carousel Controls */
    .process-carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        border-top: 1px solid #ecf0f1;
    }

    .process-prev-btn, .process-next-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f8f9fa;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3498db;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .process-prev-btn:hover, .process-next-btn:hover {
        background-color: #3498db;
        color: white;
        transform: translateY(-2px);
    }

    .process-prev-btn:active, .process-next-btn:active {
        transform: translateY(0);
    }

    .process-prev-btn:after, .process-next-btn:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
        transform: scale(0);
        opacity: 0;
        border-radius: 50%;
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    }

    .process-prev-btn:active:after, .process-next-btn:active:after {
        transform: scale(3);
        opacity: 1;
        transition: 0s;
    }

    .process-indicators {
        display: flex;
        gap: 8px;
        margin: 0 20px;
    }

    .process-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ecf0f1;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }

    .process-indicator:hover {
        background-color: #bdc3c7;
    }

    .process-indicator.active {
        background-color: #3498db;
        transform: scale(1.2);
    }

    .process-indicator:before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 50%;
        border: 2px solid #3498db;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.3s ease;
    }

    .process-indicator.active:before {
        opacity: 1;
        transform: scale(1);
    }

    /* Progress Bar */
    .process-progress-container {
        height: 6px;
        background-color: #ecf0f1;
        border-radius: 3px;
        margin-top: 30px;
        overflow: hidden;
        position: relative;
    }

    .process-progress-container:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, 
            rgba(255,255,255,0.1), 
            rgba(255,255,255,0.2), 
            rgba(255,255,255,0.1));
        animation: progress-shine 2s infinite;
    }

    @keyframes progress-shine {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .process-progress-bar {
        height: 100%;
        background: linear-gradient(to right, #3498db, #2980b9);
        width: 16.66%; /* 100% / 6 steps */
        transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
        border-radius: 3px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .process-slide-inner {
            flex-direction: column;
            padding: 25px;
        }
        
        .process-slide-number {
            margin-right: 0;
            margin-bottom: 20px;
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
        
        .process-slides {
            height: 580px;
        }
    }

    @media (max-width: 480px) {
        .process-features {
            flex-direction: column;
        }
        
        .process-slides {
            height: 650px;
        }
    }

    /* FAQ Section Styles */
    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    #faq {
        background: linear-gradient(135deg, #ecf0f1 0%, #f5f7f8 100%);
        padding-bottom: 80px;
    }

    .faq-category {
        margin-bottom: 50px;
        position: relative;
    }

    .faq-category::after {
        content: '';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 1px;
        background: radial-gradient(circle, rgba(52, 152, 219, 0.5) 0%, rgba(52, 152, 219, 0) 70%);
    }

    .faq-category:last-child::after {
        display: none;
    }

    .faq-category-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        color: #2980b9;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #dde1e3;
        font-weight: 600;
        position: relative;
        text-align: center;
    }

    .faq-category-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #2980b9);
        border-radius: 3px;
    }

    .faq-item {
        background-color: #ffffff;
        border-radius: 10px;
        margin-bottom: 15px;
        border: 1px solid #dde1e3;
        box-shadow: 0 4px 6px rgba(0,0,0,0.03);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow: hidden;
        position: relative;
    }

    .faq-item:hover {
        box-shadow: 0 7px 14px rgba(50,50,93,0.1), 0 3px 6px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

    .faq-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(to bottom, #3498db, #2980b9);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .faq-item.active::before {
        opacity: 1;
    }

    .faq-question {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #2c3e50;
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        user-select: none;
        position: relative;
        z-index: 1;
    }

    .faq-question span {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .faq-question .fa-chevron-circle-right {
        color: #3498db;
        margin-right: 15px;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        font-size: 1.1em;
    }

    .faq-icon-toggle {
        color: #3498db;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        font-size: 1em;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(52, 152, 219, 0.1);
        border-radius: 50%;
        padding: 12px;
    }

    /* Active state for the question */
    .faq-question:hover {
        color: #3498db;
        background-color: rgba(236, 240, 241, 0.3);
    }

    .faq-question.active-question {
        color: #3498db;
    }

    .faq-item.active .faq-question {
        background-color: rgba(236, 240, 241, 0.5);
        color: #2980b9;
        font-weight: 600;
    }

    .faq-item.active .fa-chevron-circle-right {
        transform: rotate(90deg);
        color: #2980b9;
    }

    .faq-item.active .faq-icon-toggle {
        transform: rotate(180deg);
        background-color: #3498db;
        color: white;
    }

    .faq-answer {
        font-size: 15px;
        color: #566573;
        line-height: 1.8;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), 
                    opacity 0.4s ease-in-out, 
                    padding 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding-left: 55px;
        padding-right: 25px;
        padding-bottom: 0;
        margin-top: -5px;
        position: relative;
    }

    .faq-answer::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 15px;
        width: 1px;
        background: linear-gradient(to bottom, rgba(52, 152, 219, 0.5), rgba(52, 152, 219, 0.1));
    }

    .faq-item.active .faq-answer {
        opacity: 1;
        padding-bottom: 25px;
    }

    .faq-answer p {
        margin-bottom: 15px;
        position: relative;
    }

    .faq-answer p:last-child {
        margin-bottom: 0;
    }

    .faq-answer strong {
        color: #3498db;
        font-weight: 600;
    }

    .faq-answer ul {
        padding-left: 18px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .faq-answer ul li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 15px;
    }

    .faq-answer ul li::before {
        content: '\2022';
        color: #3498db;
        font-weight: bold;
        display: inline-block; 
        position: absolute;
        left: -5px;
        top: 0;
    }

    /* Make the FAQ area responsive */
    @media (max-width: 768px) {
        .faq-question {
            padding: 15px 15px 15px 20px;
            font-size: 15px;
        }
        
        .faq-answer {
            padding-left: 45px;
            padding-right: 15px;
        }
        
        .faq-answer::before {
            left: 25px;
        }
        
        .faq-question .fa-chevron-circle-right {
            margin-right: 10px;
        }
        
        .faq-icon-toggle {
            padding: 10px;
        }
    }
