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

body {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    background-color: #F7F7F7;
    line-height: 1.8;
    direction: rtl;
    padding-top: 52px; /* Space for fixed countdown bar */
}

/* Countdown Bar */
.countdown-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #F47C20;
    color: white;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    height: 52px;
    display: flex;
    align-items: center;
}

.countdown-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.cta-button {
    background-color: white;
    color: #0F4D2E;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 0;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blinking Animation */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.blinking-text {
    animation: blink 2s ease-in-out infinite;
}

.countdown-separator {
    animation: none; /* Keep separators visible */
}

.cta-button:hover {
    background-color: #F7F7F7;
    color: #0F4D2E;
}

.countdown-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    flex: 1;
    justify-content: flex-start;
}

.hourglass-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

.countdown-label {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0.95;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    direction: rtl;
}

.countdown-number {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.countdown-unit {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.95;
    margin-left: 2px;
}

.countdown-and {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0 6px;
}

.countdown-time {
    display: flex;
    align-items: center;
    gap: 2px;
    direction: ltr; /* Left to right for time format */
}

.countdown-separator {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    
    .countdown-bar {
        height: 56px;
    }
    
    .cta-button {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .countdown-section {
        gap: 8px;
        padding: 0 12px;
    }
    
    .hourglass-icon {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.85rem;
    }
    
    .countdown-number {
        font-size: 0.9rem;
    }
    
    .countdown-unit {
        font-size: 0.75rem;
    }
    
    .countdown-and {
        font-size: 0.85rem;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .countdown-bar {
        height: 60px;
    }
    
    .countdown-content {
        flex-direction: column;
        height: auto;
        min-height: 60px;
    }
    
    .cta-button {
        width: 100%;
        font-size: 0.75rem;
        padding: 8px 12px;
        border-radius: 0;
    }
    
    .countdown-section {
        width: 100%;
        padding: 8px 12px;
        justify-content: center;
        gap: 6px;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 0.85rem;
    }
    
    .countdown-unit {
        font-size: 0.7rem;
    }
    
    .countdown-and {
        font-size: 0.8rem;
        margin: 0 3px;
    }
}

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

/* Hero Section */
.hero {
    background-color: #0F4D2E;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.program-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-top: 30px;
    color: #F47C20;
}

.program-description {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Statistics Section */
.statistics-section {
    background-color: #FFB84D;
    padding: 60px 0;
    text-align: center;
}

.statistics-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 40px;
    text-align: center;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background-color: #FFD699;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #0F4D2E;
    margin-bottom: 15px;
}

.stat-label {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1A1A1A;
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: 60px 0;
    background-color: white;
}

.section:nth-child(even) {
    background-color: #F7F7F7;
}

/* Video Section */
.video-section {
    background-color: #F7F7F7;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Program Explanation */
.explanation-content {
    max-width: 900px;
    margin: 0 auto;
}

.explanation-subtitle {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0F4D2E;
    margin: 30px auto 10px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 10px;
    max-width: 900px;
    text-align: right;
}

.benefits-list li {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1A1A1A;
    line-height: 1.9;
    padding: 10px 0;
    padding-right: 28px;
    position: relative;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    right: 0;
    top: 6px;
    color: #F47C20;
    font-size: 1.8rem;
    line-height: 1;
}

.explanation-list {
    list-style: none;
    padding: 0;
    margin: 25px auto 0;
    max-width: 900px;
    text-align: right;
}

.explanation-list li {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1A1A1A;
    line-height: 1.9;
    padding: 10px 0;
    padding-right: 34px;
    position: relative;
}

.explanation-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #F47C20;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Video CTA */
.video-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.video-cta {
    min-width: 180px;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: transparent;
    color: #F47C20;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #F47C20;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #F47C20;
    color: white;
    transform: translateY(-2px);
}

/* Custom Registration Form (Google Forms styled) */
.reg-form-shell {
    margin: 35px 0 10px;
    padding: 40px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 77, 46, 0.95), rgba(15, 77, 46, 0.85));
    position: relative;
    overflow: hidden;
}

.reg-form-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(244, 124, 32, 0.25), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(255, 184, 77, 0.18), transparent 50%);
    pointer-events: none;
}

.reg-card {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    background: white;
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.reg-card-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #0F4D2E;
    text-align: center;
    margin-bottom: 24px;
}

.reg-form {
    margin-top: 10px;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.reg-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reg-field-full {
    grid-column: 1 / -1;
}

.reg-label {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2B2B2B;
}

.req {
    color: #F47C20;
    font-weight: 800;
}

.reg-input,
.reg-textarea {
    width: 100%;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #E2E2E2;
    background: #FAFAFA;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.reg-textarea {
    resize: vertical;
    min-height: 54px;
}

.reg-input:focus,
.reg-textarea:focus {
    border-color: rgba(244, 124, 32, 0.9);
    background: white;
    box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.18);
}

.reg-subtitle {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #0F4D2E;
    text-align: center;
    margin-top: 10px;
}

.reg-radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #E2E2E2;
    background: #FAFAFA;
}

.reg-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
}

.reg-radio input {
    accent-color: #F47C20;
}

.reg-submit {
    width: 100%;
    margin-top: 20px;
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    background-color: #F47C20;
    color: white;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.reg-submit:hover {
    background-color: #d66a1a;
    transform: translateY(-1px);
}

.reg-help,
.reg-fallback {
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 14px;
    color: #4A4A4A;
}

.reg-help a,
.reg-fallback a {
    color: #F47C20;
    text-decoration: underline;
    font-weight: 700;
}

.phone-ltr {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

.reg-status {
    margin-top: 12px;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.reg-status.is-loading,
.reg-status.is-success {
    color: #0F4D2E;
}

.reg-status.is-error {
    color: #B00020;
}

.hidden-iframe {
    width: 0;
    height: 0;
    border: 0;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.section-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #0F4D2E;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: #F47C20;
}

.section-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #1A1A1A;
}

/* Program Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.detail-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #F47C20;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.detail-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0F4D2E;
    margin-bottom: 15px;
}

.detail-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: #1A1A1A;
}

/* Admission Advantage */
.admission-advantage {
    background-color: white;
}

.admission-advantage .section-title {
    color: #0F4D2E;
}

.admission-advantage .section-title::after {
    background-color: #F47C20;
}

.advantage-box {
    background-color: #F7F7F7;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #F47C20;
    max-width: 900px;
    margin: 0 auto;
}

.advantage-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    color: #1A1A1A;
}

/* Notes Section */
.notes-section {
    background-color: #F7F7F7;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-right: 4px solid #F47C20;
}

.notes-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0F4D2E;
    margin-bottom: 20px;
}

.notes-list {
    list-style: none;
    padding: 0;
}

.notes-list li {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    line-height: 1.8;
}

.notes-list li::before {
    content: '▪';
    position: absolute;
    right: 0;
    color: #F47C20;
    font-size: 1.5rem;
}

.text-link {
    color: #F47C20;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #d66a1a;
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0F4D2E;
    margin-bottom: 20px;
    text-align: center;
}

.contact-text {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    color: #1A1A1A;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-label {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0F4D2E;
}

.contact-link {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #F47C20;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d66a1a;
    text-decoration: underline;
}

.registration-text-link {
    color: #F47C20;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.registration-text-link:hover {
    color: #d66a1a;
}

.registration-link {
    text-align: center;
    margin-top: 30px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #F47C20;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

/* Footer */
.footer {
    background-color: #0F4D2E;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

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

.footer-divider {
    width: 120px;
    height: 3px;
    background-color: #F47C20;
    margin: 10px auto 25px;
    border-radius: 2px;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-contact {
    text-align: center;
    width: 100%;
}

.footer-contact-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
}

.footer-contact-info {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    direction: rtl;
}

.footer-contact-info .footer-link[dir="ltr"] {
    direction: ltr;
    display: inline-block;
}

.footer-contact-label {
    font-weight: 600;
}

.footer-contact-separator {
    color: #F47C20;
    margin: 0 4px;
}

.footer-link {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F47C20;
    text-decoration: underline;
}

.footer-copyright {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: white;
    text-align: center;
    direction: rtl;
    width: 100%;
    margin: 0;
}

.footer-dev {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.dev-text {
    color: white;
}

.dev-agency {
    color: #F47C20;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.dev-agency:hover {
    color: #d66a1a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .program-title {
        font-size: 1.6rem;
    }

    .program-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .section {
        padding: 40px 0;
    }

    .footer {
        padding: 50px 0;
    }

    .footer-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .footer-nav {
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer-contact-info {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
        width: 100%;
    }

    .statistics-title {
        font-size: 1.6rem;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-wrapper {
        margin: 0 20px;
    }

    .video-cta-group {
        gap: 12px;
    }

    .explanation-list li {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .reg-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .advantage-box {
        padding: 25px;
    }

    .contact-section {
        padding: 25px;
    }

    .statistics-section {
        padding: 40px 0;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .footer-nav {
        gap: 20px;
        flex-direction: column;
    }

    .footer-quicklinks {
        gap: 14px;
        flex-direction: column;
    }

    .footer-link {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer-contact-title {
        font-size: 1rem;
    }

    .footer-contact-info {
        font-size: 0.9rem;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
    }

    .footer-contact-separator {
        display: none;
    }

    .footer-copyright {
        text-align: center;
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-dev {
        font-size: 0.85rem;
    }

    .video-wrapper {
        margin: 0 15px;
        border-radius: 4px;
    }

    .video-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .video-cta {
        width: 100%;
        max-width: 320px;
    }

    .reg-form-shell {
        padding: 26px 14px;
        border-radius: 14px;
    }

    .reg-card {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .reg-card-title {
        font-size: 1.5rem;
    }

    .statistics-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

