/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs exactes du site WordPress */
    --ast-global-color-0: #fb2056;
    --ast-global-color-1: #da1c4b;
    --ast-global-color-2: #191919;
    --ast-global-color-3: #404040;
    --ast-global-color-4: #f5f5f5;
    --ast-global-color-5: #ffffff;
    --ast-global-color-6: #ececec;
    --ast-global-color-7: #191919;
    --ast-global-color-8: #000000;
    
    /* Couleurs spécifiques */
    --primary-green: #3db052;
    --primary-green-hover: #3ebd40;
    --header-bg: #233248;
    --below-header-bg: #eee;
    --footer-bg-primary: #101626;
    --footer-bg-secondary: #182c42;
    --border-color: #dddddd;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7em;
    color: var(--ast-global-color-3);
    background: var(--ast-global-color-4);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--ast-global-color-2);
    clear: both;
}

h1 {
    font-size: 64px;
    line-height: 1.4em;
}

h2 {
    font-size: 34px;
    line-height: 1.3em;
}

h3 {
    font-size: 24px;
    line-height: 1.3em;
}

a {
    color: var(--ast-global-color-0);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover, a:focus {
    color: var(--ast-global-color-1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: var(--ast-global-color-5);
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   Header - Design exact WordPress
   ============================================ */
.header {
    position: relative;
    width: 100%;
    z-index: 1000;
}

.header-top {
    background-color: var(--below-header-bg);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-top .disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--ast-global-color-3);
    margin: 0;
}

.ast-primary-header-bar {
    background-color: transparent;
    background-image: none;
    min-height: 70px;
    display: block;
    width: 100%;
}

.dark-header {
    background-color: #233248;
    margin-bottom: 60px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}

.site-logo {
    max-width: 106px;
    width: 106px;
    height: auto;
}

.brand-name {
    display: none;
}

.nav-menu-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--ast-global-color-5);
    font-weight: 400;
    font-size: 15px;
    padding: 0 1em;
    display: inline-block;
    height: 70px;
    line-height: 70px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--ast-global-color-0);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--ast-global-color-5);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 225px 40px;
    margin-top: 0;
    background-repeat: no-repeat;
    background-position: 51% 30%;
    background-size: cover;
    background-attachment: scroll;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 51% 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--ast-global-color-5);
    max-width: 860px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--ast-global-color-5);
    font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: var(--ast-global-color-5);
    font-style: italic;
    margin-left: 15%;
    margin-right: 15%;
}

.hero-disclaimer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f0f8ff;
    padding: 10px 5px;
    text-align: center;
    font-size: 13px;
    color: var(--ast-global-color-3);
}
main#main-content {
    margin-top: -110px;
}
/* ============================================
   Buttons - Style exact WordPress
   ============================================ */
.btn {
    display: inline-block;
    padding: 17px 40px;
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--ast-global-color-5);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    line-height: 1em;
    text-transform: uppercase;
    border-radius: 30px;
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover, .btn:focus {
    background-color: var(--primary-green-hover);
    border-color: var(--primary-green-hover);
    color: var(--ast-global-color-5);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-green);
}

.btn-large {
    padding: 17px 40px;
    font-size: 17px;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 112px 40px 80px;
    background: var(--ast-global-color-5);
}

.features-grid {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    border: 1px solid var(--ast-global-color-6);
    border-radius: 6px;
    background: var(--ast-global-color-5);
    text-align: left;
}

.checkmark-icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
    padding: 10px;
    background-color: var(--ast-global-color-5);
    border-radius: 50%;
}

.checkmark-icon svg {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    color: var(--primary-green);
    fill: var(--primary-green);
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--ast-global-color-2);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5em;
}

.feature-description {
    color: var(--ast-global-color-3);
    line-height: 1.7;
    font-size: 16px;
}

/* ============================================
   Our Story Section
   ============================================ */
.our-story {
    padding: 90px 40px 80px;
    background: var(--ast-global-color-5);
}

.story-header {
    margin-bottom: 48px;
}

.story-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--ast-global-color-3);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    line-height: 1.3em;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.story-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.story-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.story-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 0 rgba(0, 0, 0, 0.439);
}

.story-text {
    flex: 1;
    padding-left: 0;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--ast-global-color-2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.checkmark-icon-inline {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.checkmark-icon-inline svg {
    width: 20px;
    height: 20px;
}

.story-text p {
    margin-bottom: 18px;
    color: var(--ast-global-color-3);
    line-height: 1.8;
    font-size: 16px;
}

.story-list {
    margin: 25px 0;
    padding-left: 0;
}

.story-list li {
    padding-left: 25px;
    position: relative;
    color: var(--ast-global-color-3);
    line-height: 1.8;
    font-size: 16px;
}

.story-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--ast-global-color-2);
    font-weight: bold;
}

/* ============================================
   Apply eTA Section
   ============================================ */
.apply-eta {
    padding: 170px 40px;
    background: var(--ast-global-color-5);
    background-image: url('images/img4.webp');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.apply-eta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ast-global-color-7);
    opacity: 0.6;
}

.apply-eta .container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
}

.apply-eta .section-title {
    color: var(--ast-global-color-5);
    margin-bottom: 20px;
}

.apply-eta .subsection-title {
    color: var(--ast-global-color-5);
    margin-bottom: 40px;
}

.apply-eta .uagb-ifb-separator {
    width: 10%;
    border-top-width: 3px;
    border-top-color: var(--ast-global-color-0);
    border-top-style: solid;
    margin-bottom: 20px;
}

.eta-content {
    text-align: left;
    max-width: 50%;
    padding-left: 50%;
}

.eta-content p {
    margin-bottom: 36px;
    color: var(--ast-global-color-5);
    line-height: 1.8;
    font-size: 16px;
}

.eta-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    padding: 112px 40px;
    background: var(--ast-global-color-5);
}

.process .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--ast-global-color-3);
    margin-bottom: 48px;
    text-align: center;
}

.section-subtitle a {
    color: var(--ast-global-color-0);
}

.process-steps {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 48px auto 0;
}

.process-step {
    flex: 1;
    padding: 32px;
    border: 1px solid var(--ast-global-color-6);
    border-radius: 6px;
    background: var(--ast-global-color-5);
    text-align: left;
}

.step-number {
    font-size: 32px;
    font-weight: 500;
    color: var(--ast-global-color-8);
    margin-bottom: 24px;
    line-height: 1.2em;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--ast-global-color-2);
    font-family: 'Montserrat', sans-serif;
}

.step-description {
    color: var(--ast-global-color-3);
    line-height: 1.7;
    font-size: 16px;
}

/* ============================================
   Application Form Section
   ============================================ */
.application-form {
    position: relative;
    padding: 140px 40px;
    overflow: hidden;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.form-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.form-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 40px;
    color: var(--ast-global-color-5);
}

.form-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--ast-global-color-5);
    font-family: 'Montserrat', sans-serif;
}

.form-subtitle {
    font-size: 18px;
    color: var(--ast-global-color-5);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
}

.form-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 12px;
    max-width: 100%;
    margin: 20px auto 0;
}

.js-notice {
    font-size: 14px;
    color: var(--ast-global-color-3);
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

.apply-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 0;
    padding: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-size: 16px;
    line-height: 19px;
}

.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
    background: var(--ast-global-color-5);
    color: rgba(0, 0, 0, 0.7);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.apply-form .btn {
    width: 300px;
    margin-top: 10px;
    border-radius: 12px;
    height: 41px;
    font-size: 17px;
    padding: 0 15px;
}

/* ============================================
   How it Works Section
   ============================================ */
.how-it-works {
    padding: 100px 40px;
    background: var(--ast-global-color-5);
}

.how-works-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.how-works-content {
    flex: 1;
}

.how-works-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--ast-global-color-2);
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.how-works-title em {
    font-style: italic;
}

.how-works-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-works-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 0;
}

.how-works-item:not(:last-child) {
    margin-bottom: 0;
}

.how-icon {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ast-global-color-2);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.how-icon svg {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.how-text {
    flex: 1;
}

.how-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ast-global-color-3);
}

.how-text strong {
    color: var(--ast-global-color-2);
    font-weight: 600;
}

.how-works-image {
    flex: 0 0 564px;
    max-width: 564px;
}

.how-works-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ============================================
   Check Status Section
   ============================================ */
.check-status {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
    background-image: url('images/img4.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.check-status::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
}

.status-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.status-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--ast-global-color-5);
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 100px 40px;
    background: var(--ast-global-color-5);
}

.faq .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--ast-global-color-3);
    margin-bottom: 48px;
    text-align: center;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    column-gap: 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--ast-global-color-0);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    margin: 0;
    flex: 1;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon {
    font-size: 16px;
    font-weight: 400;
    color: var(--ast-global-color-0);
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    fill: var(--ast-global-color-0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--ast-global-color-3);
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer strong {
    color: var(--ast-global-color-2);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 100px 40px;
    background: var(--ast-global-color-5);
    text-align: center;
}

.contact .section-title {
    max-width: 900px;
    margin: 0 auto 20px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--ast-global-color-3);
    margin: 20px auto 35px;
    max-width: 700px;
    line-height: 1.7;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-hero {
    padding: 100px 40px 60px;
    background: var(--ast-global-color-5);
    text-align: center;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 40px 100px;
    background: var(--ast-global-color-5);
}

.contact-section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.contact-section-description {
    font-size: 16px;
    color: var(--ast-global-color-3);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    font-size: 16px;
    line-height: 1.5;
}

.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
    background: var(--ast-global-color-5);
    color: var(--ast-global-color-2);
    line-height: 1.5;
    transition: border-color 0.3s ease;
}

.contact-form-group input[type="text"]:focus,
.contact-form-group input[type="email"]:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.contact-form .btn {
    margin-top: 10px;
    border-radius: 12px;
    height: 41px;
    font-size: 17px;
    padding: 0 30px;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 40px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact .about-hero-image {
object-position: center 10%;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--ast-global-color-5);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.about-company {
    padding: 100px 40px;
    background: var(--ast-global-color-5);
}

.about-company-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-company-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.about-company-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.about-company-content {
    flex: 1;
}

.about-mission-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--ast-global-color-2);
    font-family: 'Montserrat', sans-serif;
}

.about-mission-text p {
    margin-bottom: 18px;
    color: var(--ast-global-color-3);
    line-height: 1.8;
    font-size: 16px;
}

.what-we-do {
    padding: 100px 40px;
    background: var(--ast-global-color-5);
}

.what-we-do-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.what-we-do-content {
    flex: 1;
}

.what-we-do-text p {
    margin-bottom: 18px;
    color: var(--ast-global-color-3);
    line-height: 1.8;
    font-size: 16px;
}

.what-we-do-features {
    flex: 0 0 400px;
    max-width: 400px;
}

.what-we-do-feature {
    padding: 0;
    margin-bottom: 0;
}

.what-we-do-feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ast-global-color-2);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.what-we-do-feature-title .what-we-do-feature-icon {
    flex-shrink: 0;
}

.what-we-do-feature-description {
    color: var(--ast-global-color-3);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 8px;
}

.what-we-do-feature-divider {
    height: 1px;
    background: var(--ast-global-color-6);
    margin: 24px 0;
}

.accreditations {
    padding: 100px 40px;
    background: var(--ast-global-color-5);
    text-align: center;
}

.accreditations .section-title {
    margin-bottom: 30px;
}

.accreditations-content {
    max-width: 900px;
    margin: 0 auto;
}

.accreditations-content p {
    margin-bottom: 18px;
    color: var(--ast-global-color-3);
    line-height: 1.8;
    font-size: 16px;
}

/* ============================================
   Terms and Conditions Page
   ============================================ */
body.terms-page .header {
    position: relative;
}

body.terms-page .nav-link {
    color: var(--ast-global-color-3);
}

body.terms-page .nav-link:hover {
    color: var(--ast-global-color-0);
}

body.terms-page .nav-toggle span {
    background: var(--ast-global-color-3);
}

@media (max-width: 921px) {
    body.terms-page .nav-menu {
        background: var(--ast-global-color-5);
    }
    
    body.terms-page .nav-link {
        color: var(--ast-global-color-3);
    }
}

.terms-hero {
    padding: 100px 40px 60px;
    background: var(--ast-global-color-5);
    text-align: center;
}

.terms-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.terms-content {
    padding: 60px 40px 100px;
    background: var(--ast-global-color-5);
}

.terms-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--ast-global-color-6);
}

.terms-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ast-global-color-3);
    margin: 0;
}

.terms-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.terms-section:last-of-type {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.terms-section h2 strong {
    font-weight: 700;
}

.terms-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ast-global-color-3);
    margin-bottom: 16px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.terms-list li {
    padding-left: 25px;
    position: relative;
    color: var(--ast-global-color-3);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 12px;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ast-global-color-2);
    font-weight: bold;
    font-size: 18px;
}

.terms-list li a {
    color: var(--ast-global-color-0);
    text-decoration: underline;
}

.terms-list li a:hover {
    color: var(--ast-global-color-1);
}

.terms-footer {
    max-width: 900px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--ast-global-color-6);
}

.terms-footer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ast-global-color-3);
    margin: 0;
    text-align: center;
}

.terms-footer strong {
    color: var(--ast-global-color-2);
    font-weight: 700;
}

/* ============================================
   Canada Tips Section
   ============================================ */
.canada-tips {
    padding: 100px 40px;
    background: var(--ast-global-color-5);
}

.canada-tips .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.canada-tips .subsection-title {
    text-align: center;
    margin-bottom: 48px;
    font-size: 28px;
}

.tips-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tip-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    border: 1px solid var(--ast-global-color-6);
    border-radius: 6px;
    background: var(--ast-global-color-5);
}

.tip-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 20px;
    color: var(--ast-global-color-2);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5em;
}

.tip-item p {
    color: var(--ast-global-color-3);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 0;
}

.tip-item strong {
    color: var(--ast-global-color-2);
}

.tip-item .uagb-iconbox-icon-wrap {
    width: 14px;
    height: 14px;
    padding: 0;
}

/* ============================================
   Footer - Design exact WordPress
   ============================================ */
.footer {
    background: var(--footer-bg-secondary);
    color: var(--ast-global-color-5);
    padding: 0;
}

.footer-primary {
    background-color: var(--footer-bg-primary);
    padding: 45px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer-logo-img {
    max-width: 88px;
    width: 88px;
    height: auto;
    margin-bottom: 15px;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer .logo-icon {
    fill: var(--ast-global-color-5);
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ast-global-color-5);
}

.footer-disclaimer {
    margin-bottom: 25px;
}

.footer-disclaimer p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--ast-global-color-5);
    font-size: 10pt;
    text-align: left;
}

.footer-disclaimer p:first-child {
    margin-top: 0;
}

.footer-disclaimer em {
    font-style: italic;
}

.footer-disclaimer strong {
    font-weight: 600;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.footer-menu li a {
    color: var(--ast-global-color-4);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--ast-global-color-5);
    text-decoration: none;
}

.footer-bottom {
    background-color: var(--footer-bg-secondary);
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ssl-image {
    max-width: 101px;
    width: 101px;
    height: auto;
}

.footer-copyright {
    color: var(--ast-global-color-5);
    font-size: 14px;
    text-align: left;
}

.ssl-badge {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.ssl-text {
    color: var(--ast-global-color-5);
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}

.ssl-text strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.ssl-text span {
    text-transform: uppercase;
    font-size: 11px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content-wrapper {
        flex-direction: column;
    }
    
    .story-image {
        flex: 1;
        max-width: 100%;
    }
    
    .eta-content {
        max-width: 100%;
        padding-left: 0;
    }
    
    .how-works-wrapper {
        flex-direction: column;
    }
    
    .how-works-image {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 921px) {
    html {
        font-size: 91.2%;
    }
    
    h1 {
        font-size: 44px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .ast-primary-header-bar {
        background-color: transparent;
    }
    
    .nav {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--ast-global-color-5);
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .ast-primary-header-bar {
        background-color: transparent;
    }
    
    .nav-link {
        color: var(--ast-global-color-5);
        height: auto;
        line-height: 1.85714285714286;
        padding: 0.5em 1em;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-toggle span {
        background: var(--ast-global-color-5);
    }

    .hero {
        padding: 80px 32px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-left: 0;
        margin-right: 0;
    }

    .features {
        padding: 80px 24px;
    }
    
    .features-grid {
        flex-direction: column;
    }

    .tips-content {
        flex-direction: column;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .ssl-badge {
        justify-content: center;
    }
}

@media (max-width: 544px) {
    html {
        font-size: 100%;
    }
    
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }

    .hero {
        padding: 64px 24px;
    }
    
    .hero-title {
        font-size: 24px;
    }

    .features, .our-story, .apply-eta, .process, .how-it-works, .check-status, .faq, .contact, .canada-tips, .contact-hero, .contact-section, .about-company, .what-we-do, .accreditations, .terms-hero, .terms-content {
        padding: 64px 20px;
    }
    
    .contact-hero-title, .terms-hero-title {
        font-size: 32px;
    }
    
    .terms-section h2 {
        font-size: 20px;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 100px 32px;
    }
    
    .about-hero-title {
        font-size: 44px;
    }
    
    .about-company-wrapper {
        flex-direction: column;
    }
    
    .about-company-image {
        flex: 1;
        max-width: 100%;
    }
    
    .what-we-do-wrapper {
        flex-direction: column;
    }
    
    .what-we-do-features {
        flex: 1;
        max-width: 100%;
    }

    .form-box {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 28px;
    }
    
    .tips-content {
        flex-direction: column;
    }
}
