/* ========================= */
/* GENERAL STYLES           */
/* ========================= */

/* Base Styles */
:root {
    /* Primary Colors */
    --primary-color: #1A2A56;       /* Blu Navy */
    --secondary-color: #4A90E2;     /* Azzurro */
    
    /* Secondary Colors */
    --accent-color: #FF9966;        /* Arancione */
    --success-color: #66CC99;       /* Verde */
    
    /* Background Colors */
    --bg-light: #FFFFFF;            /* Bianco */
    --bg-lighter: #F5F7FA;          /* Grigio chiaro */
    
    /* Neutral Colors */
    --neutral: #6C757D;             /* Grigio */
    --neutral-dark: #343A40;        /* Grigio scuro */
    
    /* Hand-drawn Style Colors */
    --paper-color: #F8F4E3;         /* Beige carta */
    --pencil-color: #9E9E9E;        /* Grigio matita */
    
    /* Font Sizes */
    --fs-small: 0.875rem;
    --fs-normal: 1rem;
    --fs-medium: 1.125rem;
    --fs-large: 1.25rem;
    --fs-xlarge: 1.5rem;
    --fs-xxlarge: 2rem;
    
    /* Border Radius */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --border-radius-xlarge: 20px;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--neutral-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Links and Buttons */
a {
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

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

.button {
    transition: var(--transition-normal);
    font-weight: 500;
}

.button.is-primary {
    background-color: var(--secondary-color);
}

.button.is-primary:hover {
    background-color: var(--primary-color);
}

.button.is-primary.is-outlined {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.button.is-primary.is-outlined:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Typography */
.title, .subtitle {
    font-weight: 700;
    line-height: 1.3;
}

.title.is-1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.title.is-2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.title.is-3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.has-text-primary {
    color: var(--secondary-color) !important;
}

.section {
    padding: 3rem 1.5rem;
}

@media screen and (max-width: 768px) {
    .title.is-1 {
        font-size: 2rem;
    }
    
    .title.is-2 {
        font-size: 1.75rem;
    }
    
    .title.is-3 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
}

/* ========================= */
/* HAND-DRAWN AESTHETICS    */
/* ========================= */

.hand-drawn-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid var(--neutral-dark);
    overflow: hidden;
}

.hand-drawn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-medium);
    z-index: -1;
    transform: rotate(-0.5deg);
    box-shadow: var(--shadow-sm);
}

.hand-drawn-illustration {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.hand-drawn-illustration::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--neutral);
    border-radius: var(--border-radius-medium);
    opacity: 0.2;
    z-index: -1;
}

.hand-drawn-form input,
.hand-drawn-form textarea,
.hand-drawn-form select {
    border: 2px solid var(--neutral);
    border-radius: var(--border-radius-medium);
    padding: 0.75rem;
    transition: var(--transition-normal);
    background-color: var(--bg-light);
}

.hand-drawn-form input:focus,
.hand-drawn-form textarea:focus,
.hand-drawn-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.25);
}

/* ========================= */
/* HEADER & NAVIGATION      */
/* ========================= */

.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar.is-scrolled {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-item {
    font-weight: 500;
    transition: var(--transition-normal);
}

.navbar-item.is-active,
.navbar-item:hover {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
}

.navbar-burger {
    color: var(--neutral-dark);
}

.navbar-burger:hover {
    background-color: transparent;
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--bg-light);
        box-shadow: var(--shadow-md);
        padding: 1rem;
    }
    
    .navbar-item {
        padding: 0.75rem 1rem;
    }
}

/* ========================= */
/* HERO SECTION             */
/* ========================= */

.hero {
    position: relative;
}

.full-bleed-hero {
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 42, 86, 0.8), rgba(26, 42, 86, 0.95));
    z-index: -1;
}

.hero-body {
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem;
}

.hero .title,
.hero .subtitle {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 1.5rem;
}

.timeline-container {
    position: relative;
    margin: 3rem 0;
}

.timeline-track {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--neutral);
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: left;
    padding-left: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: right;
    padding-right: 2rem;
}

.timeline-content {
    width: 45%;
    position: relative;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -46px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -46px;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    top: 0;
    font-weight: bold;
    color: var(--neutral-dark);
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    left: 55%;
}

.timeline-item:nth-child(even)::before {
    right: 55%;
}

.timeline-card {
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

.timeline-card.future-card {
    background-color: var(--paper-color);
    border: 2px dashed var(--neutral);
}

.mobile-timeline-image {
    display: none;
    margin-top: 2rem;
    text-align: center;
}

.mobile-timeline-image img {
    max-width: 100%;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-md);
}

@media screen and (max-width: 768px) {
    .timeline-container {
        display: none;
    }
    
    .mobile-timeline-image {
        display: block;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 1.5rem;
}

.feature-card {
    height: 100%;
    transition: var(--transition-normal);
}

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

.feature-icon {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 5rem 1.5rem;
}

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

.contact-illustration {
    position: relative;
}

.contact-info-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-md);
}

.contact-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
    min-width: 16px;
}

@media screen and (max-width: 768px) {
    .contact-illustration {
        margin-top: 3rem;
    }
    
    .contact-info-box {
        position: relative;
        width: 100%;
        margin-top: 1.5rem;
    }
}

/* ========================= */
/* BLOG STYLES              */
/* ========================= */

.blog-hero {
    background-color: var(--bg-lighter);
    padding: 5rem 1.5rem;
}

.featured-post {
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
}

.featured-image img {
    transition: var(--transition-normal);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    font-weight: bold;
    z-index: 1;
}

.post-meta {
    color: var(--neutral);
    margin-bottom: 1rem;
    font-size: var(--fs-small);
}

.post-meta span {
    margin-right: 1.5rem;
}

.post-meta i {
    margin-right: 0.25rem;
}

.blog-card {
    height: 100%;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

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

.blog-card .card-image {
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--border-radius-medium);
    border-top-right-radius: var(--border-radius-medium);
}

.blog-card .image {
    height: 200px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card:hover .image {
    transform: scale(1.05);
}

.blog-card .image-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
}

.blog-card .excerpt {
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.newsletter-section {
    padding: 5rem 1.5rem;
}

.newsletter-box {
    padding: 2.5rem;
    text-align: center;
}

/* Article Styles */
.article-hero {
    background-color: var(--bg-lighter);
    padding: 5rem 1.5rem 2rem;
}

.article-featured-image {
    margin-top: 2rem;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-content {
    padding: 3rem 1.5rem;
}

.article-intro {
    font-size: var(--fs-large);
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.article-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}

.article-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body ul li, .article-body ol li {
    margin-bottom: 0.75rem;
}

.info-box {
    background-color: var(--paper-color);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.article-navigation {
    margin: 3rem 0;
}

.related-articles {
    margin-top: 4rem;
}

.related-article {
    height: 100%;
    padding: 1.5rem;
}

.related-article h4 {
    margin-bottom: 0.75rem;
}

.sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-block {
    margin-bottom: 2rem;
}

.sidebar-block h3 {
    margin-bottom: 1rem;
}

.toc-list, .article-series {
    list-style: none;
    padding-left: 0;
}

.toc-list li, .article-series li {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.article-series li.is-active a {
    color: var(--primary-color);
    font-weight: bold;
}

.about-author {
    padding: 1.5rem;
}

.author-bio {
    font-size: var(--fs-normal);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .sidebar {
        margin-top: 3rem;
    }
}

/* ========================= */
/* GUIDE STYLES             */
/* ========================= */

.guide-hero {
    background-color: var(--bg-lighter);
    padding: 5rem 1.5rem;
}

.guide-navigation {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.guide-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.guide-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    padding: 1.5rem;
    text-align: center;
    color: var(--neutral-dark);
    transition: var(--transition-normal);
}

.guide-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
}

.guide-nav-item i {
    margin-bottom: 1rem;
}

.guide-nav-item span {
    font-weight: 500;
}

.guide-section {
    padding: 5rem 1.5rem;
}

.guide-content h3 {
    color: var(--primary-color);
}

.guide-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-list li {
    margin-bottom: 0.75rem;
}

.guide-list.numbered-list {
    list-style-type: decimal;
}

.guide-image {
    overflow: hidden;
    border-radius: var(--border-radius-medium);
}

.guide-image img {
    width: 100%;
    transition: var(--transition-normal);
}

.guide-image:hover img {
    transform: scale(1.05);
}

.guide-image-caption {
    text-align: center;
    font-style: italic;
    margin-top: 0.75rem;
    color: var(--neutral);
}

.tip-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tip-icon {
    margin-bottom: 1rem;
}

.operator-comparison, .device-features {
    margin-top: 2rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
    min-width: 20px;
}

.troubleshooting-container {
    margin-top: 2rem;
}

.problem-header {
    padding: 1rem;
    background-color: var(--bg-lighter);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.problem-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
}

.problem-header h3 i {
    margin-right: 0.75rem;
    transition: var(--transition-normal);
}

.problem-header.active h3 i {
    transform: rotate(90deg);
}

.problem-content {
    padding: 0 1rem 1rem;
    display: none;
}

.problem-content.active {
    display: block;
}

.future-content {
    padding: 2rem;
}

/* ========================= */
/* CONTACT STYLES           */
/* ========================= */

.contact-hero {
    background-color: var(--bg-lighter);
    padding: 5rem 1.5rem;
}

.contact-info {
    padding: 2rem;
}

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

.icon-container {
    margin-right: 1.5rem;
    min-width: 40px;
}

.contact-detail h4 {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    padding: 2rem;
}

.map-container {
    padding: 0;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-container {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1rem;
    background-color: var(--bg-lighter);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question h3 {
    margin: 0;
    display: flex;
    align-items: center;
}

.faq-question h3 i {
    margin-right: 0.75rem;
    transition: var(--transition-normal);
}

.faq-question.active h3 i {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* ========================= */
/* LEGAL PAGES STYLES       */
/* ========================= */

.legal-section {
    padding: 5rem 1.5rem;
}

.legal-content {
    padding: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
    margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol {
    padding-left: 1.5rem;
}

.legal-content ul li, .legal-content ol li {
    margin-bottom: 0.75rem;
}

.legal-content table {
    margin-bottom: 2rem;
}

/* ========================= */
/* THANK YOU PAGE STYLES    */
/* ========================= */

.thanks-section {
    padding: 5rem 1.5rem;
}

.thanks-content {
    padding: 3rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success-color);
}

.thanks-details {
    margin: 2rem 0;
}

.suggested-content {
    padding: 5rem 1.5rem;
}

/* ========================= */
/* FOOTER STYLES            */
/* ========================= */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 1.5rem 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: white;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================= */
/* COOKIE CONSENT STYLES    */
/* ========================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cookie-buttons {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.category-header h4 {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.category-toggle {
    min-width: 60px;
    text-align: right;
    margin-left: 1rem;
}

.category-toggle input[type="checkbox"] {
    display: none;
}

.category-toggle label {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-toggle label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    transition: var(--transition-normal);
}

.category-toggle input[type="checkbox"]:checked + label {
    background-color: var(--secondary-color);
}

.category-toggle input[type="checkbox"]:checked + label::after {
    transform: translateX(24px);
}

/* For international phone input */
.iti {
    width: 100%;
}

/* ========================= */
/* RESPONSIVE ADJUSTMENTS   */
/* ========================= */

@media screen and (max-width: 1023px) {
    .hero-body {
        padding: 4rem 1.5rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .guide-nav-item {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .hero-body {
        padding: 3rem 1.5rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .timeline-content {
        width: 100%;
        padding: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .timeline-item::before {
        position: static;
        display: block;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }
    
    .featured-content {
        margin-top: 2rem;
    }
    
    .guide-nav-container {
        justify-content: space-between;
    }
    
    .guide-nav-item {
        width: calc(50% - 0.5rem);
        height: 120px;
    }
    
    .article-content {
        padding: 2rem 1rem;
    }
    
    .related-article {
        margin-bottom: 1rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .guide-nav-item {
        width: 100%;
        margin-bottom: 1rem;
    }
}