.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-container .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-container.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-660 .elementor-element.elementor-element-4f90484{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-html .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-html.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}/* Start custom CSS *//* --- Global Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll from clip-path */
}

body {
    font-family: 'Inter', sans-serif; /* Clean body font */
    color: var(--color-text-light);
    background-color: var(--color-bg-dark); /* Deepest background */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Global Variables (New Palette: Black & Orange) --- */
:root {
    --color-bg-dark: #000000;       /* Pure Black */
    --color-bg-medium: #1A1A1A;     /* Very Dark Gray for sections */
    --color-bg-light: #333333;      /* Dark Gray for cards/forms */
    --color-accent-primary: #F79A24; /* Brighter Orange */
    --color-accent-secondary: #DF7D00; /* Darker Orange for gradients */
    --color-text-light: #FFFFFF;    /* Pure White */
    --color-text-subtle: rgba(255, 255, 255, 0.7); /* White with transparency */
    --font-heading: 'Orbitron', sans-serif; /* Futuristic heading font */
    --font-body: 'Inter', sans-serif;
    --section-padding-y: 8rem;
    --border-glow: 0 0 15px rgba(247, 154, 36, 0.6), 0 0 30px rgba(247, 154, 36, 0.4); /* Orange glow */
    --button-shadow: 0 10px 40px rgba(247, 154, 36, 0.6); /* Orange button shadow */
}

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2; /* Content always above backgrounds/dividers */
}

.section {
    position: relative;
    overflow: hidden; /* Important for shape dividers and contained backgrounds */
    padding: var(--section-padding-y) 0;
    text-align: center;
    z-index: 1; /* Default section z-index */
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    text-shadow: var(--border-glow); /* Glowing text effect */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-subheading {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--color-text-subtle);
    margin-bottom: 3.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animations for elements inside sections (Delays remain the same) */
.section.in-view .section-heading,
.section.in-view .section-subheading,
.section.in-view .contact-form,
.section.in-view .form-group,
.section.in-view .submit-button,
.section.in-view .form-reassurance,
.section.in-view .contact-method-card,
.section.in-view .process-step,
.section.in-view .faq-item {
    opacity: 1;
    transform: translateY(0);
}

.section.in-view .section-heading { transition-delay: 0.2s; }
.section.in-view .section-subheading { transition-delay: 0.4s; }
.section.in-view .contact-form { transition-delay: 0.6s; }
.section.in-view .contact-form .form-group:nth-child(1) { transition-delay: 0.7s; }
.section.in-view .contact-form .form-group:nth-child(2) { transition-delay: 0.8s; }
.section.in-view .contact-form .form-group:nth-child(3) { transition-delay: 0.9s; }
.section.in-view .contact-form .form-group:nth-child(4) { transition-delay: 1.0s; }
.section.in-view .contact-form .form-group:nth-child(5) { transition-delay: 1.1s; }
.section.in-view .contact-form .submit-button { transition-delay: 1.2s; }
.section.in-view .contact-form .form-reassurance { transition-delay: 1.3s; }

.section.in-view .contact-methods-grid .contact-method-card:nth-child(1) { transition-delay: 0.7s; }
.section.in-view .contact-methods-grid .contact-method-card:nth-child(2) { transition-delay: 0.8s; }
.section.in-view .contact-methods-grid .contact-method-card:nth-child(3) { transition-delay: 0.9s; }

.section.in-view .process-steps .process-step:nth-child(1) { transition-delay: 0.7s; }
.section.in-view .process-steps .process-step:nth-child(2) { transition-delay: 0.8s; }
.section.in-view .process-steps .process-step:nth-child(3) { transition-delay: 0.9s; }

.section.in-view .faq-list .faq-item:nth-child(1) { transition-delay: 0.7s; }
.section.in-view .faq-list .faq-item:nth-child(2) { transition-delay: 0.8s; }
.section.in-view .faq-list .faq-item:nth-child(3) { transition-delay: 0.9s; }
.section.in-view .faq-list .faq-item:nth-child(4) { transition-delay: 1.0s; }


/* --- Hero Section (#hero-section) --- */
#hero-section {
    background: radial-gradient(circle at top left, var(--color-bg-medium) 0%, var(--color-bg-dark) 80%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero background pattern (subtle animated dots/grid) */
#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle, rgba(247, 154, 36, 0.05) 1px, transparent 1px), /* Orange dots */
        radial-gradient(circle, rgba(223, 125, 0, 0.05) 1px, transparent 1px); /* Darker orange dots */
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    animation: backgroundPan 60s linear infinite;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundPan {
    from { background-position: 0 0, 15px 15px; }
    to { background-position: 60px 60px, 75px 75px; }
}

/* Hero to Form Section Divider (Sharp Tech Angle) */
#hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--color-bg-medium); /* Match next section's background */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
    z-index: 1;
}

/* --- Contact Form Section (#contact-form-section) --- */
#contact-form-section {
    background: var(--color-bg-medium);
    padding-top: calc(var(--section-padding-y) + 50px);
    position: relative;
    z-index: 2;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: rgba(51, 51, 51, 0.8); /* Dark gray for the form box with transparency */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3.5rem;
    border: 1px solid rgba(247, 154, 36, 0.2); /* Subtle orange accent border */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), var(--border-glow); /* Deep shadow with orange glow */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(70px);
}

.form-group {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-label .required {
    color: var(--color-accent-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background-color: rgba(0, 0, 0, 0.2); /* Darker transparent background */
    border: 1px solid rgba(247, 154, 36, 0.3); /* Orange accent border */
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text-light);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4); /* White placeholder text */
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 5px rgba(247, 154, 36, 0.3), var(--border-glow); /* Enhanced glowing focus ring */
    background-color: rgba(0, 0, 0, 0.3);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 180px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1.3rem 2.5rem;
    background: linear-gradient(90deg, var(--color-accent-primary) 0%, var(--color-accent-secondary) 100%); /* Orange gradient */
    color: var(--color-bg-dark); /* Dark text on orange button */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, background 0.4s ease;
    box-shadow: var(--button-shadow); /* Initial button glow */
    margin-top: 3rem;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.submit-button:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(247, 154, 36, 0.8), 0 0 50px rgba(223, 125, 0, 0.8); /* Stronger, dual-orange glow */
    background: linear-gradient(90deg, var(--color-accent-secondary) 0%, var(--color-accent-primary) 100%); /* Reverse gradient on hover */
}

.form-reassurance {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Form to Alternative Section Divider (Circuit Board Wave) */
#contact-form-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 180px;
    background: var(--color-bg-dark); /* Match next section's background */
    clip-path: polygon(
        0 0, 10% 20%, 20% 0, 30% 25%, 40% 5%, 50% 30%, 60% 0, 70% 35%, 80% 10%, 90% 40%, 100% 0,
        100% 100%, 90% 80%, 80% 100%, 70% 75%, 60% 95%, 50% 70%, 40% 100%, 30% 65%, 20% 90%, 10% 60%, 0 100%
    );
    z-index: 1;
}

/* --- Alternative Contact Methods Section (#alternative-contact-section) --- */
#alternative-contact-section {
    background: var(--color-bg-dark);
    padding-top: calc(var(--section-padding-y) + 80px);
    position: relative;
    z-index: 2;
}

/* Parallax Background for Alternative Section (Abstract Lines/Data Flow) */
#alternative-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Updated placeholder URL for black background and orange text */
    background: url('https://via.placeholder.com/1920x1080/000000/F79A24?text=Abstract+Data+Flow') no-repeat center center/cover;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.contact-method-card {
    background: var(--color-bg-light); /* Dark gray for card background */
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(247, 154, 36, 0.15); /* Orange accent border */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(247, 154, 36, 0.2); /* Deep shadow, subtle orange glow */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
}

.contact-method-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), var(--border-glow); /* Stronger shadow with orange glow */
    border-color: var(--color-accent-primary); /* Accent border on hover */
    background: linear-gradient(135deg, var(--color-bg-light) 0%, rgba(51, 51, 51, 0.9) 100%); /* Subtle gradient change */
}

.card-icon {
    font-size: 5rem;
    color: var(--color-accent-primary);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(247, 154, 36, 0.8); /* More intense orange glow */
    transition: transform 0.4s ease;
}

.contact-method-card:hover .card-icon {
    transform: scale(1.15) rotateY(15deg);
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.card-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-button {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    background: linear-gradient(90deg, var(--color-accent-primary) 0%, var(--color-accent-secondary) 100%); /* Orange gradient */
    color: var(--color-bg-dark); /* Dark text on orange button */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 8px 30px rgba(247, 154, 36, 0.5);
}

.card-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(247, 154, 36, 0.7);
    background: linear-gradient(90deg, var(--color-accent-secondary) 0%, var(--color-accent-primary) 100%);
}

/* Alternative to What Happens Next Section Divider (Quantum Wave) */
#alternative-contact-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--color-bg-medium); /* Match next section's background */
    clip-path: polygon(
        0 0, 15% 50%, 25% 10%, 40% 70%, 50% 20%, 65% 80%, 75% 30%, 90% 90%, 100% 40%,
        100% 100%, 0 100%
    );
    z-index: 1;
}

/* --- What Happens Next Section (#what-happens-next-section) --- */
#what-happens-next-section {
    background: var(--color-bg-medium);
    padding-top: calc(var(--section-padding-y) + 70px);
    position: relative;
    z-index: 2;
}

/* Background gradient animation for process steps */
#what-happens-next-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(247, 154, 36, 0.05), rgba(223, 125, 0, 0.05)); /* Orange gradient */
    background-size: 200% 200%;
    animation: gradientShift 30s ease infinite alternate;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}


.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    padding: 3rem 2rem;
    background: var(--color-bg-light); /* Dark gray background */
    border-radius: 20px;
    border: 1px solid rgba(223, 125, 0, 0.15); /* Subtle darker orange border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(223, 125, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(223, 125, 0, 0.4);
    border-color: var(--color-accent-secondary); /* Darker orange accent */
}

.step-icon {
    font-size: 4.5rem;
    color: var(--color-accent-secondary); /* Use darker orange accent for steps */
    margin-bottom: 1.8rem;
    text-shadow: 0 0 25px rgba(223, 125, 0, 0.7); /* Icon glow */
}

.step-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.step-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

/* What Happens Next to FAQ Section Divider (Hex Grid) */
#what-happens-next-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--color-bg-dark); /* Match next section's background */
    clip-path: polygon(
        0% 0%, 5% 50%, 0% 100%, 10% 100%, 15% 50%, 10% 0%,
        20% 0%, 25% 50%, 20% 100%, 30% 100%, 35% 50%, 30% 0%,
        40% 0%, 45% 50%, 40% 100%, 50% 100%, 55% 50%, 50% 0%,
        60% 0%, 65% 50%, 60% 100%, 70% 100%, 75% 50%, 70% 0%,
        80% 0%, 85% 50%, 80% 100%, 90% 100%, 95% 50%, 90% 0%,
        100% 0%, 100% 100%, 0% 100%
    );
    z-index: 1;
}

/* --- Mini FAQ Section (#faq-section) --- */
#faq-section {
    background: var(--color-bg-dark);
    padding-top: calc(var(--section-padding-y) + 50px);
}

.faq-list {
    max-width: 950px;
    margin: 4rem auto 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--color-bg-medium); /* Darker background for FAQ items */
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(247, 154, 36, 0.1); /* Subtle orange border */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease;
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(247, 154, 36, 0.05); /* Subtle orange accent hover */
    color: var(--color-accent-primary); /* Accent color on hover */
}

.faq-arrow {
    font-size: 1em;
    color: var(--color-accent-primary); /* Orange arrow */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 0 2rem 1.8rem 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 0.8rem;
}

/* --- Responsive Adjustments (No Changes) --- */
@media (max-width: 1024px) {
    --section-padding-y: 6rem;
    .section {
        padding: var(--section-padding-y) 0;
    }
    .contact-form {
        padding: 2.5rem;
    }
    .contact-methods-grid,
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    --section-padding-y: 4rem;
    .section {
        padding: var(--section-padding-y) 0;
    }
    .container {
        padding: 0 1rem;
    }

    #hero-section {
        min-height: 70vh;
        height: 70vh;
        padding: 4rem 1rem;
    }

    .section-heading {
        font-size: clamp(2rem, 7vw, 3.2rem);
    }

    .section-subheading {
        font-size: clamp(0.95rem, 3vw, 1.15rem);
        margin-bottom: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-input,
    .form-textarea {
        padding: 1.1rem 1.4rem;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 1.1rem 1.8rem;
        font-size: 1.05rem;
    }

    .form-reassurance {
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }

    .contact-methods-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-method-card,
    .process-step {
        padding: 2.5rem 1.5rem;
    }

    .card-icon, .step-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .card-title, .step-title {
        font-size: 1.7rem;
    }

    .card-description, .step-description {
        font-size: 0.95rem;
    }

    .card-button {
        padding: 0.9rem 1.6rem;
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        font-size: 0.95rem;
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    /* Adjust divider heights for smaller screens */
    #hero-section::after,
    #contact-form-section::after,
    #alternative-contact-section::after,
    #what-happens-next-section::after {
        height: 80px;
    }
    #contact-form-section::after {
        clip-path: polygon(
            0 0, 15% 30%, 30% 0, 45% 35%, 60% 5%, 75% 40%, 90% 10%, 100% 45%,
            100% 100%, 0 100%
        ); /* Simplified for mobile */
    }
    #alternative-contact-section::after {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%); /* Simplified */
    }
    #what-happens-next-section::after {
         clip-path: polygon(
            0% 0%, 10% 50%, 0% 100%, 20% 100%, 30% 50%, 20% 0%,
            40% 0%, 50% 50%, 40% 100%, 60% 100%, 70% 50%, 60% 0%,
            80% 0%, 90% 50%, 80% 100%, 100% 100%, 100% 0%
        ); /* Simplified for mobile */
    }
}/* End custom CSS */