/* Andrea Bellato Website - Styles */
/* Medical blue + white color palette */

:root {
    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F2F8FF;
    --bg-card: #FFFFFF;
    --bg-sidebar: #F6FAFF;

    /* Text (deep clinical navy) */
    --text-primary: #0B1F33;
    --text-secondary: #274B6A;
    --text-muted: #5E778D;
    --text-light: #FFFFFF;

    /* Accent (medical blue) */
    --accent: #1E6FDB;
    --accent-hover: #175BB5;
    --accent-light: #7FB6FF;

    /* Luxury accent (photo borders, badges) */
    --luxury-accent: #C9A24B;

    /* Borders */
    --border: #D7E7F7;
    --border-light: #EAF3FD;

    /* Shadows (slightly cooler tone) */
    --shadow: rgba(11, 31, 51, 0.08);
    --shadow-medium: rgba(11, 31, 51, 0.12);
    --shadow-strong: rgba(11, 31, 51, 0.16);

    /* WhatsApp green */
    --whatsapp: #25D366;
    --whatsapp-hover: #1EBE5A;
}

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

body {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Container Structure */
.containerWrapper {
    width: 100%;
    min-height: 100vh;
}

#appRow {
    display: flex;
    position: relative;
    min-height: 100vh;
}

/* Sidebar Styles */
#stickyColumnWrap {
    width: 325px;
    position: relative;
    z-index: 10;
    transition: 0.25s;
    flex: 0 0 325px;
}

#stickyColumn {
    position: fixed;
    top: 0;
    width: 325px;
    height: 100vh;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translate3d(0%, 0, 0);
    transition: 0.25s;
    padding: 25px 35px 50px;
}

/* Custom Scrollbar */
#stickyColumn::-webkit-scrollbar {
    width: 6px;
}

#stickyColumn::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

#stickyColumn::-webkit-scrollbar-thumb {
    background: var(--accent-light);
    border-radius: 3px;
}

#stickyColumn::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Navigation Close Button */
#side-nav-close {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 17px;
    right: 10px;
    background: var(--accent);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

#side-nav-close:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

#side-nav-close svg {
    width: 23px;
    color: var(--text-light);
    transition: 0.25s;
}

#side-nav-close:hover svg {
    transform: rotate(45deg);
}

.nav-closed #side-nav-close svg {
    transform: rotate(45deg);
}

.nav-closed #side-nav-close:hover svg {
    transform: rotate(0deg);
}

.nav-closed #stickyColumn {
    transform: translate3d(-100%, 0, 0);
}

.nav-closed #side-nav-close {
    right: -45px;
}

.nav-closed #stickyColumnWrap {
    width: 0;
    flex: 0 0 0;
}

/* Logo / Profile Photo */
.logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 20px var(--shadow-medium);
    transition: all 0.3s ease;
    display: inline-block;
    overflow: hidden;
    object-fit: cover;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px var(--shadow-strong);
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 25px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.name-header {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0;
    text-align: center;
}

.subtitle {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 15px;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 15px;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    background: var(--accent);
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.action-btn.whatsapp {
    background: var(--whatsapp);
}

.action-btn.whatsapp:hover {
    background: var(--whatsapp-hover);
}

/* Navigation Links */
.nav-link {
    display: block;
    padding: 12px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    white-space: normal;
    line-height: 1.4;
}

.nav-link i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

/* Main Content */
#mainContent {
    flex: 1;
    margin-left: 0;
    padding: 60px 40px;
    transition: 0.25s;
    min-height: 100vh;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.nav-closed #mainContent {
    margin-left: 0;
    padding: 60px 40px;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Content Toggle */
.content-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 999px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    margin-bottom: 50px;
}

.toggle-btn {
    appearance: none;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover,
.toggle-btn:focus-visible {
    color: var(--accent);
    outline: none;
}

.toggle-btn.active {
    background: var(--accent);
    color: var(--text-light);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Content Views */
.content-view {
    display: block;
    animation: fadeIn 0.4s ease;
}

.js-enabled .content-view:not(.active) {
    display: none;
}

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

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

/* Hero Content */
.hero-content {
    margin-bottom: 60px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

h1 u {
    text-decoration: none;
    color: var(--accent);
    position: relative;
}

h1 u::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 25px;
}

.location-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 14px;
    color: var(--text-secondary);
}

.location-tag i {
    color: var(--accent);
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
    text-align: left;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.5px;
}

.description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Divider */
.content-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 60px auto;
    max-width: 800px;
}

/* Credentials */
.credentials {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 30px;
    max-width: 700px;
    margin: 30px auto 0;
}

.credentials h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-secondary);
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list li i {
    color: var(--accent);
    margin-top: 3px;
}

/* Profile Photo Wrapper (Alfredo-style) */
.andrea-photo-wrapper {
    width: min(520px, 100%);
    max-height: 500px;
    margin: 0 auto 35px;
    border-radius: 12px;
    border: 3px solid var(--luxury-accent);
    overflow: hidden;
    box-shadow: 0 18px 45px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.andrea-photo-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px var(--shadow-strong);
}

.andrea-photo {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Featured Book Showcase */
.book-showcase {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 35px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 14px 40px var(--shadow);
}

.book-showcase-cover {
    display: flex;
    justify-content: center;
}

.book-showcase-img {
    width: 100%;
    max-width: 240px;
    border-radius: 12px;
    box-shadow: 0 10px 28px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.book-showcase-cover:hover .book-showcase-img {
    transform: translateY(-5px) scale(1.02);
}

.book-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.book-showcase-title {
    margin-top: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
}

.book-showcase-subtitle {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 16px;
    font-style: italic;
}

.book-showcase-description {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
}

.book-showcase-actions {
    margin-top: 22px;
}

/* Sidebar Location Styles */
.sidebar-location {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-location:last-of-type {
    border-bottom: none;
}

.sidebar-location-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.sidebar-location-title i {
    color: var(--accent);
    margin-right: 8px;
}

.sidebar-location-address {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 22px;
}

.sidebar-location-link {
    padding: 8px 0 !important;
    font-size: 13px !important;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--accent-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 24px;
    color: var(--accent);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

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

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.location-card h3 i {
    color: var(--accent);
    margin-right: 8px;
}

.location-card .address {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Books Grid */
.books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.book-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.book-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    background: var(--bg-secondary);
    display: block;
}

.book-info {
    padding: 20px;
}

.book-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.book-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.book-year {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 30px auto 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-item i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.cta-button.whatsapp {
    background: var(--whatsapp);
}

.cta-button.whatsapp:hover {
    background: var(--whatsapp-hover);
}

.cta-button.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.cta-button.secondary:hover {
    background: var(--border);
    border-color: var(--accent-light);
}

/* Approfondimenti Section */
#approfondimenti h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.coming-soon {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.coming-soon-icon i {
    font-size: 36px;
    color: var(--accent);
}

.coming-soon h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.coming-soon p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.topics-preview {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topic-tag {
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Placeholder Grid for Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.article-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    opacity: 0.5;
}

.placeholder-category {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.placeholder-title {
    height: 24px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 15px;
}

.placeholder-excerpt {
    height: 60px;
    background: var(--border-light);
    border-radius: 4px;
}

/* Mobile Menu Button */
#mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
}

#mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 5px;
    transition: 0.3s;
}

#mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

#stickyColumnWrap.open ~ #mobile-menu-btn {
    opacity: 0;
    pointer-events: none;
}

/* Desktop Sidebar Open Button */
#side-nav-open {
    position: fixed;
    left: 18px;
    top: 18px;
    width: 45px;
    height: 45px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: var(--accent);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: 0.25s;
}

#side-nav-open:hover {
    transform: scale(1.05);
    background: var(--accent-hover);
}

#side-nav-open svg {
    color: var(--text-light);
}

body.nav-closed #side-nav-open {
    display: flex;
}

/* Responsive */
@media (max-width: 1024px) {
    #side-nav-open {
        display: none !important;
    }

    #stickyColumnWrap {
        position: fixed;
        width: 100vw;
        max-width: 100vw;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    #stickyColumn {
        width: 100%;
        max-width: 100%;
        border-right: none;
    }

    #stickyColumnWrap.open {
        transform: translateX(0);
    }

    #side-nav-close {
        right: 25px;
        top: 25px;
    }

    #mainContent {
        margin-left: 0;
        padding: 80px 20px 40px;
        align-items: flex-start;
    }

    #mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-toggle {
        margin-bottom: 40px;
    }

    .book-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-showcase-cover {
        justify-content: center;
    }

    .book-showcase-img {
        max-width: 200px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .description {
        font-size: 15px;
    }

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

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

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .book-info {
        padding: 15px;
    }

    .book-info h4 {
        font-size: 13px;
    }

    .contact-cta {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .content-toggle {
        width: 100%;
        flex-direction: column;
    }

    .toggle-btn {
        width: 100%;
    }

    .location-tags {
        flex-direction: column;
        align-items: center;
    }

    .andrea-photo-wrapper {
        max-height: 360px;
    }

    .andrea-photo {
        max-height: 360px;
    }

    .book-showcase {
        padding: 20px;
    }

    .book-showcase-title {
        font-size: 22px;
    }

    .book-showcase-img {
        max-width: 180px;
    }
}

/* Fix for large screens */
@media (min-width: 1025px) {
    #mainContent {
        justify-content: center;
        align-items: flex-start;
        padding: 80px 60px;
    }

    .hero-section {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* HD+ screens */
@media (min-width: 1920px) {
    #stickyColumnWrap {
        width: 380px;
        flex: 0 0 380px;
    }

    #stickyColumn {
        width: 380px;
        padding: 30px 40px 50px;
    }

    .nav-closed #stickyColumnWrap {
        width: 0;
        flex: 0 0 0;
    }

    #mainContent {
        padding: 100px 100px;
    }

    h1 {
        font-size: 56px;
    }

    .description {
        font-size: 18px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        padding: 40px;
    }
}
