/* Color Scheme */
:root {
    --color-dark: #5D6466;
    --color-medium: #898A8C;
    --color-light: #CDCBC6;
    --color-cream: #F1E9E1;
    --color-white: #FFFFFF;
    --color-black: #000000;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo h1 a {
    color: var(--color-white);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Navigation */
.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-light);
    border-bottom: 2px solid var(--color-light);
}

/* Banner Styles */
.banner,
.page-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image,
.banner-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    padding: 3rem 2rem 2rem;
}

.banner-overlay h1,
.banner-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 3rem 0;
    background-color: var(--color-white);
}

.intro-section h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

/* Metro Tile Grid */
.tiles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.course-tile {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 300px;
}

.course-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-tile img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--color-medium);
    display: block;
}

.tile-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tile-content h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.tile-content p {
    color: var(--color-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-dark);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--color-medium);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-cream);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon {
    width: 60px;
    height: 60px;
    stroke: var(--color-dark);
    margin: 0 auto 1.5rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--color-medium);
}

/* Content Section */
.content-section {
    padding: 3rem 0;
    background-color: var(--color-white);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.main-content h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.main-content > h2:first-child {
    margin-top: 0;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-tile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.content-tile.reverse {
    direction: rtl;
}

.content-tile.reverse > * {
    direction: ltr;
}

.content-tile img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--color-medium);
    display: block;
}

.tile-text h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.tile-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark);
    text-align: justify;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-medium);
    color: var(--color-light);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--color-dark);
        flex-direction: column;
        width: 250px;
        padding: 1rem;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin-bottom: 0.5rem;
    }

    .banner-overlay h1,
    .banner-overlay h2 {
        font-size: 1.8rem;
    }

    .banner-overlay p {
        font-size: 1rem;
    }

    .intro-section h2,
    .section-title {
        font-size: 2rem;
    }

    .content-tile {
        grid-template-columns: 1fr;
    }

    .content-tile.reverse {
        direction: ltr;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .banner,
    .page-banner {
        height: 300px;
    }

    .banner-overlay {
        padding: 2rem 1rem 1rem;
    }

    .banner-overlay h1,
    .banner-overlay h2 {
        font-size: 1.5rem;
    }

    .banner-overlay p {
        font-size: 0.9rem;
    }

    .intro-section h2,
    .section-title {
        font-size: 1.8rem;
    }

    .intro-text,
    .main-content p {
        font-size: 1rem;
    }

    .tile-content h3,
    .tile-text h3 {
        font-size: 1.3rem;
    }

    .nav-menu {
        width: 100%;
        right: 0;
        left: 0;
    }

    .content-tile img {
        height: 250px;
    }

    .course-tile img {
        height: 200px;
    }
}

/* Image Placeholder Styles */
img[src*="picture"] {
    background-color: var(--color-medium);
    background-image: 
        linear-gradient(45deg, var(--color-light) 25%, transparent 25%),
        linear-gradient(-45deg, var(--color-light) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--color-light) 75%),
        linear-gradient(-45deg, transparent 75%, var(--color-light) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    stroke: var(--color-dark);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-medium);
}

.map-container-large {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container-large iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-light);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-dark);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: var(--color-medium);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
}

/* Success Page Styles */
.success-wrapper {
    max-width: 800px;
    margin: 4rem auto;
    text-align: center;
}

.success-content {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    stroke: #4CAF50;
    margin: 0 auto 2rem;
    display: block;
}

.success-content h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--color-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sitemap Page Styles */
.sitemap-wrapper {
    max-width: 1000px;
    margin: 2rem auto;
}

.sitemap-wrapper h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.sitemap-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-medium);
    margin-bottom: 3rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sitemap-section {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sitemap-section h2 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light);
}

.sitemap-list {
    list-style: none;
}

.sitemap-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.sitemap-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-dark);
    font-weight: bold;
}

.sitemap-list a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: var(--color-medium);
    text-decoration: underline;
}

/* Three Column Section */
.three-column-section {
    width: 100%;
    margin: 4rem 0;
    overflow: hidden;
}

.three-column-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 600px;
}

.column-left {
    position: relative;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #8b3a5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.column-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.column-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.column-center {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.column-content {
    max-width: 500px;
}

.column-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    text-align: justify;
    margin-bottom: 2rem;
}

.arrow-icon {
    width: 40px;
    height: 40px;
    stroke: var(--color-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow-icon:hover {
    transform: translateX(5px);
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
}

.column-right {
    background: linear-gradient(135deg, #e8e4e1 0%, #d4cfca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.circle-element {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #d63031 100%);
    box-shadow: 0 10px 40px rgba(214, 48, 49, 0.4);
    position: relative;
}

.circle-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 40px;
    }

    .three-column-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .column-left,
    .column-center,
    .column-right {
        min-height: 400px;
    }

    .column-center {
        padding: 3rem 2rem;
    }

    .circle-element {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 320px) {
    .logo-img {
        height: 35px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .three-column-wrapper {
        grid-template-columns: 1fr;
    }

    .column-left,
    .column-center,
    .column-right {
        min-height: 300px;
    }

    .column-center {
        padding: 2rem 1.5rem;
    }

    .column-content p {
        font-size: 1rem;
    }

    .circle-element {
        width: 150px;
        height: 150px;
    }
}

/* Services Section */
.services-section {
    position: relative;
    width: 100%;
    margin: 4rem 0;
}

/* Services Content */
.services-content {
    background-color: var(--color-cream);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.service-column {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-title {
    font-size: 1.5rem;
    color: #ff8c42;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.service-title::before {
    content: '✦';
    position: absolute;
    left: -5px;
    color: #ffd700;
    font-size: 1.2rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--color-light);
    transition: color 0.3s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    color: #ff8c42;
    padding-left: 0.5rem;
    transition: all 0.3s ease;
}

/* Mobile Responsive for Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 320px) {
    .service-column {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }
}

/* Policy Pages Styles */
.policy-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-wrapper h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--color-medium);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-light);
}

.policy-content {
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light);
}

.policy-content h3 {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.policy-content a {
    color: var(--color-dark);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--color-medium);
}

.policy-content strong {
    color: var(--color-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .policy-wrapper h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .policy-wrapper {
        padding: 1rem;
    }

    .policy-wrapper h1 {
        font-size: 1.8rem;
    }

    .policy-content ul {
        margin-left: 1.5rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--color-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--color-white);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.cookie-btn-accept:hover {
    background-color: var(--color-light);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.cookie-btn-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

