/* Global Styles */
body {
    font-family: 'Arial', sans-serif; /* Placeholder, will refine based on visual analysis of guidelines */
    margin: 0;
    padding: 0;
    color: #000000; /* Default text on white background */
    background-color: #FFFFFF; /* Default page color */
    line-height: 1.6;
    font-size: 16px; /* Base font size for easier rem calculations */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Use rem for padding */
    box-sizing: border-box;
}

a {
    color: #1A3B5F; /* Primary blue from guidelines for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents bottom space under images */
}

/* Typography - will be refined based on visual analysis */
h1, h2, h3, h4 {
    color: #1A3B5F; /* Primary blue for headings */
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem; 
}

h2 {
    font-size: 2rem;   
}

h3 {
    font-size: 1.5rem;  
}

h4 {
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem; /* 10px 20px */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #fed703; /* Updated to exact brand color #fed703 */
    color: #1A3B5F; 
    border-color: #fed703;
}

.btn-primary:hover {
    background-color: #e5c303; /* Slightly darker for hover state */
    text-decoration: none;
}

.btn-secondary {
    background-color: #1A3B5F; 
    color: #FFFFFF;
    border-color: #1A3B5F;
}

.btn-secondary:hover {
    background-color: #122a40; 
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #1A3B5F;
    border-color: #1A3B5F;
}

.btn-outline:hover {
    background-color: #1A3B5F;
    color: #FFFFFF;
    text-decoration: none;
}

.btn-outline-small {
    padding: 0.5rem 1rem; /* 8px 15px */
    font-size: 0.9rem;
}

/* Header Styles */
header {
    background-color: #FFFFFF; 
    padding: 1.25rem 0; /* 20px */
    border-bottom: 1px solid #F0F0F0; 
    position: relative; /* For potential mobile menu positioning */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-primary {
    height: 50px; 
    width: auto;
}

header nav {
    display: none; /* Hidden by default on mobile */
}

header nav.active { /* Class to show nav on mobile when toggled */
    display: block;
    position: absolute;
    top: 100%; /* Position below header */
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    z-index: 1000;
    padding: 1rem;
    border-bottom: 1px solid #F0F0F0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
}

header nav ul li {
    margin-left: 0; /* Remove left margin for vertical stacking */
    margin-bottom: 0.5rem; /* Spacing for vertical items */
}

header nav ul li:last-child {
    margin-bottom: 0;
}

header nav ul li a {
    color: #1A3B5F;
    font-weight: bold;
    display: block; /* Make links take full width for easier tapping */
    padding: 0.5rem 0; /* Padding for tap targets */
}

header nav ul li a.active,
header nav ul li a:hover {
    color: #fed703; /* Updated to exact brand color #fed703 */
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
}

.language-switcher {
    margin-right: 1rem; /* 20px -> 1rem */
    display: flex;
}

.lang-flag {
    height: 20px; 
    width: auto;
    margin-left: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 3px;
}

.lang-flag.active-lang {
    border-color: #fed703; /* Updated to exact brand color #fed703 */
}

.menu-toggle {
    display: block; /* Show on mobile */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1A3B5F;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

/* Footer Styles */
footer {
    background-color: #F9F9F9; 
    color: #000000; 
    padding: 2.5rem 0; /* 40px */
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column by default */
    gap: 1.875rem; /* 30px */
}

.footer-column h4 {
    color: #1A3B5F; 
    font-size: 1.1rem;
    margin-bottom: 1rem; /* 15px */
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem; /* 8px */
}

.footer-column ul li a {
    color: #000000;
}

.footer-column ul li a:hover {
    color: #fed703; /* Updated to exact brand color #fed703 */
}

.footer-brand-info .logo-secondary {
    height: 40px; 
    width: auto;
    margin-bottom: 1rem; /* 15px */
}

.footer-brand-info p {
    margin-bottom: 0.625rem; /* 10px */
}

.small-text {
    font-size: 0.85rem;
    color: #555555; 
    line-height: 1.4;
}

.footer-copyright {
    margin-top: 1rem; /* 15px */
}

.footer-copyright a {
    color: #000000;
}

.footer-copyright a:hover {
    color: #fed703; /* Updated to exact brand color #fed703 */
}

/* Social Media Icons - Updated to ensure horizontal display */
.social-media-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.social-media-icons a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.social-media-icons img {
    height: 24px; 
    width: auto;
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-media-icons a:last-child img {
    margin-right: 0;
}

.social-media-icons a:hover img {
    opacity: 1;
}

/* Common Page Sections */
.page-hero-section {
    background-color: #1A3B5F; 
    color: #FFFFFF; 
    padding: 3rem 0; /* 60px -> 3rem */
    text-align: center;
}

.page-hero-section h1 {
    color: #FFFFFF;
    font-size: 2.2rem; /* Adjusted for mobile */
    margin-bottom: 0.625rem; /* 10px */
}

.lead-text {
    font-size: 1.1rem; /* Adjusted for mobile */
    margin-bottom: 1.875rem; /* 30px */
    color: #333333;
}

/* Hero Section (Homepage) */
.hero-section {
    background-color: #1A3B5F; 
    color: #FFFFFF;
    padding: 4rem 0; /* 80px -> 4rem */
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem; /* Adjusted for mobile */
    color: #FFFFFF;
    margin-bottom: 1.25rem; /* 20px */
}

.hero-content p {
    font-size: 1.1rem; /* Adjusted for mobile */
    margin-bottom: 1.875rem; /* 30px */
}

/* How I Can Help Section */
.how-can-help-section {
    padding: 3rem 0; /* 60px */
    text-align: center;
    background-color: #FFFFFF;
}

.how-can-help-section h2 {
    margin-bottom: 2.5rem; /* 40px */
}

.help-cards {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 1.875rem; /* 30px */
}

.help-card {
    background-color: #F9F9F9; 
    padding: 1.875rem; /* 30px */
    border-radius: 8px;
    width: 100%; /* Full width on mobile */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    box-sizing: border-box;
}

.help-card img {
    height: 50px; /* Adjusted */
    width: auto;
    margin-bottom: 1.25rem; /* 20px */
    margin-left: auto; /* Center image if it has fixed width */
    margin-right: auto;
}

.help-card h3 {
    margin-bottom: 1rem; /* 15px */
}

/* Strategic Pillars Section */
.strategic-pillars-section {
    padding: 3rem 0; /* 60px */
    background-color: #F0F0F0; 
}

.strategic-pillars-section h2 {
    text-align: center;
    margin-bottom: 2.5rem; /* 40px */
}

.pillars-content {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 1.875rem; /* 30px -> 1.875rem, was 40px */
}

.pillar-item {
    background-color: #FFFFFF;
    padding: 1.875rem; /* 30px */
    border-radius: 8px;
    width: 100%; /* Full width on mobile */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.pillar-item h3 {
    margin-bottom: 1rem; /* 15px */
}

.pillar-item p {
    margin-bottom: 1.25rem; /* 20px */
}

/* Real Results Section */
.real-results-section {
    padding: 3rem 0; /* 60px */
    text-align: center;
}

.real-results-section h2 {
    margin-bottom: 1.25rem; /* 20px */
}

.real-results-section > .container > p {
    margin-bottom: 1.875rem; /* 30px */
    color: #555;
}

/* Free Resources Section - Updated for horizontal layout */
.free-resources-section {
    padding: 3rem 0; /* 60px */
    background-color: #1A3B5F;
    color: #FFFFFF;
    text-align: center;
}

.free-resources-section h2 {
    color: #FFFFFF;
    margin-bottom: 2.5rem; /* 40px */
}

.resources-boxes {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 1.875rem; /* 30px */
}

.resource-box {
    background-color: #FFFFFF;
    color: #1A3B5F;
    padding: 1.875rem; /* 30px */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.resource-icon {
    margin-bottom: 1.25rem; /* 20px */
}

.resource-icon img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}

.resource-box h3 {
    margin-bottom: 1rem; /* 15px */
    color: #1A3B5F;
}

.resource-box p {
    margin-bottom: 1.5rem; /* 24px */
    color: #333333;
}

/* Insights Agent Section */
.insights-agent-section {
    padding: 3rem 0; /* 60px */
    background-color: #1A3B5F; 
    color: #FFFFFF;
}

.insights-content {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center; /* Center items when stacked */
    gap: 1.875rem; /* 30px -> 1.875rem, was 40px */
    text-align: center;
}

.insights-text-column {
    flex: 1;
}

.insights-text-column h2 {
    color: #FFFFFF;
    margin-bottom: 1.25rem; /* 20px */
}

.insights-text-column p {
    margin-bottom: 1.875rem; /* 30px */
}

.insights-image-column {
    flex-basis: auto; /* Reset flex-basis for stacking */
    width: 80%; /* Control image size on mobile */
    max-width: 300px;
}

.insights-image-column img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* About Page Specifics */
.about-content-section {
    padding: 3rem 0; /* 60px */
}

.about-main-content {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 1.875rem; /* 30px -> 1.875rem, was 40px */
    align-items: center; /* Center items when stacked */
    margin-bottom: 2.5rem; /* 40px */
}

.about-text-column {
    flex: 1; /* Take full width when stacked */
    order: 2; /* Text below image on mobile */
}

.about-image-column {
    flex: 1; /* Take full width when stacked */
    max-width: 300px; /* Control image size */
    width: 80%;
    order: 1; /* Image above text on mobile */
}

/* Desktop styles for about page - ensure photo stays on right */
@media (min-width: 768px) {
    .about-main-content {
        flex-direction: row; /* Side by side on desktop */
        align-items: flex-start; /* Align to top */
        gap: 3rem; /* More space between columns */
    }
    
    .about-text-column {
        flex: 2; /* Text takes more space */
        order: 1; /* Text on left */
    }
    
    .about-image-column {
        flex: 1; /* Image takes less space */
        order: 2; /* Image on right */
        max-width: 350px; /* Larger max width on desktop */
        width: 100%; /* Full width of its container */
    }
}

.about-image-column img {
    border-radius: 8px;
    width: 100%;
}

.about-approach-section, .about-expertise-section {
    margin-bottom: 2.5rem; /* 40px */
}

.about-approach-section h3, .about-expertise-section h3 {
    margin-bottom: 1rem; /* 15px */
}

/* Services Page Specifics */
.services-overview-section {
    padding: 1.875rem 0; /* 30px */
    text-align: center;
}

.service-category-section {
    padding: 3rem 0; /* 60px */
}

.service-category-section.alt-bg {
    background-color: #F9F9F9;
}

.service-category-section h2 {
    text-align: center;
    margin-bottom: 2.5rem; /* 40px */
}

.service-items {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.875rem; /* 30px */
}

.service-item {
    background-color: #FFFFFF;
    padding: 1.875rem; /* 30px */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.service-item img {
    height: 50px; 
    width: auto;
    margin-bottom: 1.25rem; /* 20px */
    margin-left: auto;
    margin-right: auto;
}

.service-item h3 {
    margin-bottom: 1rem; /* 15px */
}

.service-item p {
    margin-bottom: 1.25rem; /* 20px */
    font-size: 0.95rem;
    color: #333;
}

/* CTA Banner Section (Common) */
.cta-banner-section {
    background-color: #FED703; 
    color: #1A3B5F;
    padding: 2.5rem 0; /* 50px */
    text-align: center;
}

.cta-banner-section h3 {
    color: #1A3B5F;
    font-size: 1.5rem; /* Adjusted for mobile */
    margin-bottom: 1rem; /* 15px */
}

.cta-banner-section p {
    margin-bottom: 1.5rem; /* 25px */
    font-size: 1rem; /* Adjusted for mobile */
}

/* Blog Listing Page */
.blog-listing-section {
    padding: 3rem 0; /* 60px */
}

.blog-listing-section .lead-text {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.875rem; /* 30px */
    margin-top: 2.5rem; /* 40px */
}

.blog-post-item {
    background-color: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.blog-post-image-placeholder {
    height: 200px;
    background-color: #e0e0e0; 
}

.blog-post-content {
    padding: 1.25rem; /* 20px */
}

.blog-post-meta {
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: 0.625rem; /* 10px */
}

.blog-post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.625rem; /* 10px */
}

.blog-post-content h3 a {
    color: #1A3B5F;
}

.blog-post-content h3 a:hover {
    color: #FFBA00;
    text-decoration: none;
}

.blog-post-excerpt {
    font-size: 0.95rem;
    margin-bottom: 1rem; /* 15px */
    color: #333;
}

.pagination {
    text-align: center;
    margin-top: 2.5rem; /* 40px */
}

.page-number, .page-next {
    display: inline-block;
    padding: 0.5rem 0.75rem; /* 8px 12px */
    margin: 0 0.3125rem; /* 5px */
    border: 1px solid #DDDDDD;
    color: #1A3B5F;
    border-radius: 4px;
}

.page-number.active, .page-number:hover, .page-next:hover {
    background-color: #1A3B5F;
    color: #FFFFFF;
    border-color: #1A3B5F;
    text-decoration: none;
}

/* Blog Post Template Page */
.blog-post-full {
    padding-bottom: 2.5rem; /* 40px */
}

.blog-post-hero {
    background-color: #F9F9F9; 
    padding: 2.5rem 0; /* 40px */
    text-align: center;
    margin-bottom: 1.875rem; /* 30px */
}

.blog-post-hero h1 {
    font-size: 2rem; /* Adjusted for mobile */
    margin-bottom: 0.625rem; /* 10px */
}

.blog-post-hero .blog-post-meta {
    font-size: 0.9rem;
    color: #333333;
}

.blog-post-body-section .container {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 1.875rem; /* 30px -> 1.875rem, was 40px */
}

.blog-post-content-area {
    flex: 1; /* Full width when stacked */
    order: 1; /* Content first */
}

.blog-post-content-area h2 {
    font-size: 1.6rem; /* Adjusted for mobile */
    margin-top: 1.875rem; /* 30px */
    margin-bottom: 1rem; /* 15px */
}

.blog-post-content-area p, .blog-post-content-area ul li {
    margin-bottom: 1rem; /* 15px */
    line-height: 1.7;
}

.blog-post-content-area blockquote {
    border-left: 4px solid #FFBA00;
    padding-left: 1.25rem; /* 20px */
    margin: 1.5rem 0; /* 25px */
    font-style: italic;
    color: #333333;
}

.blog-post-content-area ul {
    padding-left: 1.25rem; /* 20px */
}

.blog-post-sidebar {
    flex: 1; /* Full width when stacked */
    margin-top: 1.875rem; /* 30px */
    order: 2; /* Sidebar second */
}

.sidebar-widget {
    background-color: #F9F9F9;
    padding: 1.25rem; /* 20px */
    border-radius: 5px;
    margin-bottom: 1.5rem; /* 25px */
}

.sidebar-widget h4 {
    margin-bottom: 1rem; /* 15px */
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 0.5rem; /* 8px */
    padding-bottom: 0.5rem; /* 8px */
    border-bottom: 1px solid #EEEEEE;
}

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

/* Contact Page Specifics */
.contact-form-section {
    padding: 3rem 0; /* 60px */
}

.contact-form-container {
    margin-bottom: 1.875rem; /* 30px */
}

.form-group {
    margin-bottom: 1.25rem; /* 20px */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem; /* 8px */
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem; /* 12px */
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.checkbox-group input {
    width: auto;
    margin-right: 0.625rem; /* 10px */
    margin-top: 0.25rem; /* 4px - to align with text */
}

.checkbox-group label {
    font-weight: normal;
}

.contact-info {
    background-color: #F9F9F9;
    padding: 1.875rem; /* 30px */
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 1rem; /* 15px */
}

.contact-info p {
    margin-bottom: 1.25rem; /* 20px */
}

.contact-social {
    margin-top: 1.875rem; /* 30px */
}

.contact-social h3 {
    margin-bottom: 1rem; /* 15px */
}

/* Book Promo Section - Updated for horizontal layout */
.book-promo-section {
    background-color: #FED703;
    color: #1A3B5F;
    padding: 3rem 0;
    text-align: left;
}

.book-promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.book-promo-text {
    max-width: 600px;
}

.book-promo-text h2 {
    color: #1A3B5F;
    margin-bottom: 1rem;
}

.book-promo-text p {
    margin-bottom: 1.5rem;
    color: #1A3B5F;
}

.book-promo-image {
    max-width: 300px;
}

.book-promo-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin: 0 auto;
}

/* Call to Action Sections */
.call-to-action-section {
    background-color: #FED703;
    color: #1A3B5F;
    padding: 3rem 0;
    text-align: center;
}

.call-to-action-section h2 {
    color: #1A3B5F;
    margin-bottom: 1rem;
}

.call-to-action-section p {
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #1A3B5F;
}

/* Language Switcher Dropdown */
.language-switcher-dropdown {
    position: relative;
    margin-right: 1rem;
}

.language-switcher-button {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-weight: bold;
    color: #1A3B5F;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
    display: none;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.language-dropdown-menu.show {
    display: block;
}

.language-dropdown-menu li {
    list-style: none;
}

.language-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
}

.language-dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.language-dropdown-menu a img {
    margin-right: 8px;
    display: inline-block;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    header nav {
        display: none;
    }
    
    header nav.show-mobile {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        z-index: 1000;
        padding: 1rem;
        border-bottom: 1px solid #F0F0F0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    /* Header */
    header nav {
        display: block;
    }
    
    header nav ul {
        flex-direction: row; /* Horizontal on desktop */
    }
    
    header nav ul li {
        margin-left: 1.5rem; /* 24px */
        margin-bottom: 0;
    }
    
    header nav ul li:first-child {
        margin-left: 0;
    }
    
    .menu-toggle {
        display: none; /* Hide on desktop */
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr; /* Four columns on desktop */
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* How I Can Help Section */
    .help-cards {
        flex-direction: row; /* Side by side on desktop */
    }
    
    /* Strategic Pillars */
    .pillars-content {
        flex-direction: row; /* Side by side on desktop */
    }
    
    /* Service Items */
    .service-items {
        grid-template-columns: repeat(3, 1fr); /* Three columns on desktop */
    }
    
    /* Blog Grid */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns on desktop */
    }
    
    /* Blog Post Template */
    .blog-post-body-section .container {
        flex-direction: row; /* Side by side on desktop */
    }
    
    .blog-post-content-area {
        flex: 2; /* Content takes more space */
    }
    
    .blog-post-sidebar {
        flex: 1; /* Sidebar takes less space */
        margin-top: 0;
    }
    
    /* Contact Page */
    .contact-grid {
        display: flex;
        gap: 2rem;
    }
    
    .contact-form-container {
        flex: 3;
        margin-bottom: 0;
    }
    
    .contact-info {
        flex: 2;
    }
    
    /* Book Promo Section - Horizontal layout on desktop */
    .book-promo-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }
    
    .book-promo-text {
        flex: 1;
        padding-right: 2rem;
    }
    
    .book-promo-image {
        flex: 1;
        max-width: 400px;
    }
    
    /* Free Resources Section - Horizontal layout on desktop */
    .resources-boxes {
        flex-direction: row; /* Side by side on desktop */
        justify-content: center;
    }
    
    .resource-box {
        flex: 1;
        max-width: 500px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.625rem !important; /* 10px */
}

.mb-2 {
    margin-bottom: 1.25rem !important; /* 20px */
}

.mb-3 {
    margin-bottom: 1.875rem !important; /* 30px */
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.625rem !important; /* 10px */
}

.mt-2 {
    margin-top: 1.25rem !important; /* 20px */
}

.mt-3 {
    margin-top: 1.875rem !important; /* 30px */
}

.mobile-break {
    display: block;
}

@media (min-width: 768px) {
    .mobile-break {
        display: none;
    }
}
