/* Base styles and variables */
:root {
    --primary-color: #006d77;
    --primary-dark: #004c52;
    --primary-light: #83c5be;
    --secondary-color: #e9c46a;
    --secondary-dark: #d4a33c;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #edf6f9;
    --border-color: #dddddd;
    --success-color: #4caf50;
    --error-color: #f44336;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Merriweather', serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.btn-large {
    padding: 1.2rem 2.4rem;
    font-size: 1.8rem;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.logo img {
    height: 5rem;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.language-switcher {
    margin-right: 2rem;
    font-size: 1.4rem;
}

.language-switcher span {
    font-weight: bold;
}

.real-time-clock {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero section */
.hero {
    background-color: var(--background-dark);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto 3rem auto;
}

/* Features section */
.features {
    padding: 8rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.feature-icon svg {
    width: 3rem;
    height: 3rem;
}

.feature-card h3 {
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Blog preview section */
.blog-preview {
    background-color: var(--background-light);
    padding: 8rem 0;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.blog-card h3 {
    padding: 2rem 2rem 1rem 2rem;
    font-size: 1.8rem;
}

.blog-card p {
    padding: 0 2rem;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    padding: 0 2rem 2rem 2rem;
    font-weight: 600;
}

.view-all-blog {
    text-align: center;
    margin-top: 4rem;
}

/* Testimonials section */
.testimonials {
    padding: 8rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.testimonial {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0;
}

/* CTA section */
.cta-section {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 8rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.cta-section .btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.cta-section .btn:hover {
    background-color: var(--secondary-dark);
}

/* Footer */
footer {
    background-color: #2f3e46;
    color: #ffffff;
    padding: 6rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-logo {
    width: 12rem;
    margin-bottom: 2rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact svg {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Page header */
.page-header {
    background-color: var(--background-dark);
    padding: 6rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 60rem;
    margin: 0 auto;
}

/* Blog page */
.blog-section {
    padding: 6rem 0;
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-posts-grid {
    display: grid;
    gap: 4rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-image {
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-date {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.post-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 2rem;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 3rem;
}

.sidebar-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 2px;
    background-color: var(--primary-color);
}

.search-form {
    display: flex;
    margin-bottom: 1rem;
}

.search-form input {
    flex-grow: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.search-form button {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.categories-widget ul li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post img {
    width: 7rem;
    height: 7rem;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 1.5rem;
}

.popular-post-content h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.popular-post-content span {
    font-size: 1.4rem;
    color: var(--text-light);
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

.newsletter-form .btn {
    width: 100%;
}

/* Services page */
.services-section {
    padding: 6rem 0;
}

.services-intro {
    max-width: 80rem;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 7rem;
    height: 7rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.service-icon svg {
    width: 3.5rem;
    height: 3.5rem;
}

.service-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    padding-left: 2rem;
}

.service-features li {
    margin-bottom: 1rem;
    list-style-type: disc;
}

.service-card .btn {
    margin-top: 2rem;
}

.testimonials-section {
    background-color: var(--background-light);
    padding: 6rem 0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.testimonial-author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--text-light);
}

.faq-section {
    padding: 6rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 3rem;
}

.faq-item {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}

.faq-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* About page */
.about-section {
    padding: 6rem 0;
}

.about-intro {
    max-width: 80rem;
    margin: 0 auto 6rem auto;
}

.about-intro h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-intro p {
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    text-align: center;
}

.value-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.value-icon svg {
    width: 3rem;
    height: 3rem;
}

.team-section {
    margin-bottom: 6rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.team-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
}

.team-card h3, .team-card p {
    padding: 0 2rem;
}

.team-card h3 {
    padding-top: 2rem;
    margin-bottom: 0.5rem;
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 2rem 2rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.certifications-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.certification-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.certification-card img {
    width: 100%;
    height: 15rem;
    object-fit: contain;
    padding: 2rem;
}

.certification-card h3 {
    margin: 0;
    padding: 0 2rem 1rem 2rem;
}

.certification-card p {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-light);
}

/* Contact page */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    margin-right: 2rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.office-hours {
    margin-bottom: 3rem;
}

.hours-table {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    font-weight: 600;
}

.social-contact {
    margin-bottom: 3rem;
}

.map-container {
    margin-bottom: 3rem;
}

.map-placeholder {
    width: 100%;
    height: 25rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.contact-form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-family: var(--font-primary);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 3rem;
    max-width: 50rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    font-size: 2.8rem;
    cursor: pointer;
}

.thank-you-container {
    text-align: center;
}

.thank-you-icon {
    width: 8rem;
    height: 8rem;
    color: var(--success-color);
    margin: 0 auto 2rem auto;
}

/* Cookie banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 1rem 0;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: #ffffff;
}

.cookie-btn.customize {
    background-color: var(--background-dark);
    color: var(--text-color);
}

.cookie-btn.reject {
    background-color: var(--text-light);
    color: #ffffff;
}

.cookie-more-info {
    margin-top: 0.5rem;
    text-decoration: underline;
    font-size: 1.4rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    
    .blog-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-right {
        margin: 1.5rem 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 0;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 20rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 20% auto;
    }
}
