/* --- Variables & Reset --- */
:root {
    --color-bg: #0f172a;       /* Slate 900 - Dark Background */
    --color-surface: #1e293b;  /* Slate 800 - Cards/Footer */
    --color-text-main: #f8fafc; /* Slate 50 */
    --color-text-muted: #94a3b8; /* Slate 400 */
    --color-primary: #6366f1;  /* Indigo 500 */
    --color-primary-hover: #4f46e5; /* Indigo 600 */
    --color-accent: #14b8a6;   /* Teal 500 */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: --font-body;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    font-family: var(--font-body);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    border: none;
    cursor: pointer;
}

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

/* --- Header --- */
.header {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__list {
    display: flex;
    gap: 32px;
}

.header__link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s;
}

.header__link:hover {
    color: var(--color-accent);
}

.header__link:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-surface);
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__desc {
    margin-top: 20px;
    color: var(--color-text-muted);
    font-size: 14px;
    max-width: 300px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__link {
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer__link:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer__icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.footer__bottom {
    background-color: #0b1120;
    padding: 20px 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 13px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .header__list {
        display: none; /* Add mobile menu logic later if needed */
    }
    .header__burger {
        display: block;
    }
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer__container {
        grid-template-columns: 1fr;
    }
}

/* --- Hero Section --- */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.hero__badge-icon {
    width: 14px;
    height: 14px;
}

/* Typography */
.hero__title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__description strong {
    color: var(--color-text-main);
    font-weight: 600;
}

/* Actions */
.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.hero__btn-outline:hover {
    border-color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Stats */
.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-item {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text-main);
    font-family: var(--font-heading);
}

.hero__stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual - Code Window */
.code-window {
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.code-window__header {
    background: #0f172a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-window__dots {
    display: flex;
    gap: 6px;
    margin-right: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.code-window__title {
    font-size: 12px;
    color: var(--color-text-muted);
    font-family: monospace;
}

.code-window__body {
    padding: 24px;
    background: rgba(15, 23, 42, 0.8);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
    min-height: 300px;
}

#typewriter {
    color: var(--color-text-muted);
    white-space: pre-wrap;
}

/* Syntax Highlighting Simulators */
.c-blue { color: #6366f1; }
.c-green { color: #14b8a6; }
.c-purple { color: #d8b4fe; }
.c-white { color: #f8fafc; }

.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--color-accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__badge, .hero__actions, .hero__stats {
        justify-content: center;
    }
    .code-window {
        margin-top: 40px;
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero__title { font-size: 32px; }
    .hero__actions { flex-direction: column; }
    .hero__btn-outline { justify-content: center; }
}

/* --- Common Section Styles --- */
.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__subtitle {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section__title {
    font-size: 36px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.section__desc {
    color: var(--color-text-muted);
    font-size: 18px;
}

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

/* Card Style */
.card {
    background-color: var(--color-surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

/* Decorative gradient blob inside card */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.card:hover::before {
    opacity: 1;
}

.card__icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.card__icon {
    width: 32px;
    height: 32px;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.card__text {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Program CTA at bottom */
.program__cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.program__cta p {
    color: var(--color-text-main);
    font-size: 18px;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 10px 24px;
}

.btn--outline:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .section__title {
        font-size: 28px;
    }
}

/* --- Mentors Section --- */
.mentors {
    background-color: #0b1120; /* Трохи темніший фон для контрасту */
}

.mentors__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Mentor Card */
.mentor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.mentor-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
}

.mentor-card__header {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.mentor-card__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    padding: 4px; /* відступ від рамки */
    background-color: var(--color-bg);
}

.mentor-card__company {
    position: absolute;
    bottom: 0;
    right: -10px;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.mentor-card__name {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-text-main);
    margin-bottom: 5px;
}

.mentor-card__role {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mentor-card__bio {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.mentor-card__socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mentor-card__socials a {
    color: var(--color-text-muted);
    transition: var(--transition);
}

.mentor-card__socials a:hover {
    color: var(--color-text-main);
    transform: scale(1.1);
}

/* Banner */
.mentors__banner {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.mentors__banner-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
}

.mentors__banner-content p {
    color: rgba(255, 255, 255, 0.9);
}

.btn--white {
    background-color: #fff;
    color: var(--color-primary);
    padding: 14px 32px;
    font-weight: 700;
    white-space: nowrap;
}

.btn--white:hover {
    background-color: #f1f5f9;
    color: var(--color-primary-hover);
}

/* Responsive Banner */
@media (max-width: 768px) {
    .mentors__banner {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Reviews Section --- */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #162032; /* Slightly different shade */
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card__name {
    color: var(--color-text-main);
    font-size: 16px;
    font-weight: 700;
}

.review-card__role {
    color: var(--color-text-muted);
    font-size: 13px;
}

.review-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-card__rating .star {
    width: 16px;
    height: 16px;
    color: #fbbf24; /* Amber 400 */
    fill: #fbbf24;
}
.review-card__rating .star-half {
    width: 16px;
    height: 16px;
    color: #fbbf24; 
}

.review-card__text {
    color: var(--color-text-muted);
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
}

.review-card__text strong {
    color: var(--color-primary);
    font-style: normal;
}

/* --- FAQ Section --- */
.faq {
    background-color: var(--color-bg);
}

.faq__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq__help-box {
    margin-top: 40px;
    padding: 24px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.faq__icon {
    color: var(--color-primary);
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
}

.faq__help-box p {
    color: var(--color-text-main);
    font-size: 15px;
    margin-bottom: 16px;
}

.btn-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-link:hover {
    color: #fff;
}

/* Accordion Styles */
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.accordion-header span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-text-main);
    font-weight: 600;
    padding-right: 20px;
}

.accordion-icon {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content {
    padding-bottom: 24px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Active State */
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Responsive FAQ */
@media (max-width: 992px) {
    .faq__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Contact Section --- */
.contact {
    position: relative;
    padding-bottom: 120px;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.contact__award {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #fbbf24;
    border-radius: 0 8px 8px 0;
}

.award-icon {
    width: 32px;
    height: 32px;
    color: #fbbf24;
}

/* Form Styles */
.contact__form-wrapper {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-main);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form__error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

/* Checkbox */
.form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.checkbox-input {
    margin-top: 4px;
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Submit Button & Loader */
.form__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon {
    width: 40px;
    height: 40px;
    color: #22c55e;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
}

.success-text {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
    }
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: -100px; /* Сховано за межами екрану */
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto; /* Центрування на мобільному */
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: bottom 0.5s ease-out;
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
}

/* --- Policy Pages Styles (privacy.html, terms.html etc.) --- */
.pages {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.pages h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--color-text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.pages h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.pages p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.pages ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
    color: var(--color-text-muted);
}

.pages li {
    margin-bottom: 10px;
}

.pages strong {
    color: var(--color-text-main);
}

.pages a {
    color: var(--color-accent);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-sm {
        width: 100%;
    }
}