:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2d2d2d;
    --background-color: #ecf0f1;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: url('./images/rope-pattern.svg');
    background-repeat: repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-height: 60px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    max-width: 60%;
    display: block;
}

/* Navigation */
nav {
    height: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

nav ul li {
    margin-left: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    line-height: 1;
}

nav ul li a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

nav ul li a.active {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

nav ul li a.active:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: white;
    display: block;
    transition: all 0.3s ease;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .container {
        width: 92%;
        padding: 0 1rem;
    }
    
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .content-box {
        margin: 0 auto;
        max-width: 95%;
        padding: 1.5rem;
    }
    
    /* Container and general layout */
    .container {
        width: 98%;
        max-width: 100%;
        padding: 0 0.25rem;
        margin: 0 auto;
    }
    
    /* Content sections padding - standardized across all pages */
    .content-section {
        padding-top: 5rem !important;
        padding-bottom: 2rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
    }
    
    /* Global content box styles - standardized across all pages */
    .content-box, 
    .inspiration-content,
    .info-table,
    .contact-form,
    .resource-card,
    .hero-content,
    .quick-facts {
        padding: 1rem 0.5rem !important;
        margin: 0 0 1rem 0 !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Hero content exceptions */
    .hero-content {
        background: rgba(44, 62, 80, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Standard heading styles */
    h1, 
    .info-table th,
    .section-title,
    .inspiration-text h2,
    .resource-name,
    .quick-facts h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
        padding: 0.5rem 0 !important;
        text-align: center !important;
    }
    
    /* Fix for publisher page h1 specifically */
    .publisher-section h1,
    .content-section h1 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
        padding: 0.5rem 0 !important;
        text-align: center !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
    }
    
    /* Standard paragraph styles */
    p,
    .info-table td p,
    .inspiration-text p,
    .resource-card p,
    .value-item p,
    .form-group label,
    .quick-facts li,
    .quick-facts p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        padding: 0 !important;
    }
    
    /* Standard form element styles */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea,
    button.submit-button,
    .download-button,
    select.book-select {
        padding: 0.8rem !important;
        border-radius: 8px !important;
        font-size: 0.95rem !important;
        width: 100% !important;
    }
    
    /* Spacing between elements */
    .form-group,
    .values-grid,
    .resources-grid {
        margin-top: 1rem !important;
        gap: 0.6rem !important;
    }
    
    /* Standard image styles */
    .author-image,
    .book-cover,
    img {
        margin: 1rem auto !important;
        max-width: 100% !important;
        border-radius: 10px !important;
    }
    
    /* Standard grid layouts */
    .resources-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    
    /* Ensure content sections have consistent backgrounds */
    .content-section,
    .inspiration-section {
        background-attachment: scroll !important;
    }
    
    /* Preserve specific section adjustments */
    /* Inspiration section mobile adjustments */
    .inspiration-section {
        padding: 4rem 0.25rem 6rem !important;
    }
    
    .inspiration-content {
        max-width: 98% !important;
        margin: 0 auto !important;
    }
    
    /* Ensure values grid has max 2 columns on tablets */
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }
    
    /* Book carousel mobile adjustments */
    .book-carousel {
        padding: 2rem 0 4rem;
        margin-top: -3rem;
    }
    
    .book-carousel .section-title {
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

    /* Hero and general styles */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-badge {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .book-cover {
        width: 200px;
        height: 300px;
        transform: scale(0.85);
    }
    
    .book-cover:hover {
        transform: scale(0.95) rotate(-3deg);
    }
    
    .book-cover:not(:hover) {
        transform: scale(0.85);
        opacity: 0.7;
    }
    
    /* Header mobile styles */
    header {
        padding: 0.3rem 0;
        min-height: 50px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        background: linear-gradient(135deg, var(--primary-color), #34495e);
    }

    .nav-container {
        height: 50px;
        padding: 0 0.75rem;
        max-width: 100%;
        justify-content: space-between;
        align-items: center;
        display: flex;
        margin: 0 auto;
    }

    /* Logo styling with high specificity for all pages */
    header a.logo,
    body.publisher-page header a.logo {
        font-size: 1.2rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 260px !important; /* Increased max-width */
        padding-right: 10px !important;
        color: white !important;
        font-weight: bold !important;
        margin: 0 !important;
        display: block !important;
        text-decoration: none !important;
        font-family: 'Playfair Display', serif !important;
    }
    
    .hamburger {
        display: flex;
        cursor: pointer;
        padding: 10px;
        margin: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1000;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        margin: 3px 0;
        background: white;
        display: block;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        height: auto;
    }

    nav ul li {
        width: 100%;
        text-align: left;
        margin-left: 0;
        height: auto;
    }

    nav ul li a {
        display: block;
        padding: 0.75rem 1rem;
        color: var(--primary-color);
        font-size: 1.1rem;
        border-radius: 8px;
        width: 100%;
    }

    nav ul li a:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
        transform: none;
    }

    nav ul li a.active {
        background: var(--accent-color);
        color: white;
        transform: none;
    }

    nav ul li a.active:hover {
        background: var(--accent-color);
        color: white;
        transform: none;
    }
    
    /* Footer mobile styles */
    footer {
        padding: 0.75rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        padding: 0 15px;
    }
    
    .footer-content p {
        font-size: 0.8rem;
        padding: 0.1rem 0;
    }
    
    .social-links {
        margin-top: 0.3rem;
        gap: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    
    .social-links a {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        min-width: auto;
        min-height: 36px;
    }
    
    .social-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
    }

    /* Disable hover effects on mobile */
    .value-item:hover,
    .resource-card:hover,
    .social-links a:hover,
    .book-cover:hover,
    .coming-soon-badge:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* Mobile-specific tighter margins for index page */
    .mobile-tighter {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .mobile-tighter .inspiration-content {
        max-width: 99% !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
    }
}

/* Small phone adjustments */
@media (max-width: 480px) {
    .container {
        width: 96%;
        padding: 0 0.2rem;
    }
    
    /* Content sections padding - standardized across all pages */
    .content-section {
        padding-top: 4.5rem !important;
        padding-bottom: 1.5rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Global content box styles - standardized across all pages */
    .content-box,
    .inspiration-content,
    .info-table,
    .contact-form,
    .resource-card,
    .hero-content,
    .quick-facts {
        padding: 0.8rem 0.3rem !important;
        margin: 0 0 0.8rem 0 !important;
        border-radius: 8px !important;
    }
    
    /* Standard heading styles */
    h1,
    .info-table th,
    .section-title,
    .inspiration-text h2,
    .resource-name,
    .quick-facts h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
        padding: 0.3rem 0 !important;
    }
    
    /* Fix for publisher page h1 specifically */
    .publisher-section h1,
    .content-section h1,
    .content-box h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
        padding: 0.3rem 0 !important;
        text-align: center !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
    }
    
    /* Standard paragraph styles */
    p,
    .info-table td p,
    .inspiration-text p,
    .resource-card p,
    .value-item p,
    .form-group label,
    .quick-facts li,
    .quick-facts p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.7rem !important;
    }
    
    /* Standard form element styles */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea,
    button.submit-button,
    .download-button,
    select.book-select {
        padding: 0.7rem !important;
        border-radius: 6px !important;
        font-size: 0.9rem !important;
    }
    
    /* Spacing between elements */
    .form-group,
    .values-grid,
    .resources-grid {
        margin-top: 0.8rem !important;
        gap: 0.4rem !important;
    }
    
    /* Standard image styles */
    .author-image,
    .book-cover,
    img {
        margin: 0.8rem auto !important;
        border-radius: 8px !important;
    }
    
    /* Preserve specific section adjustments */
    /* Inspiration section small phone adjustments */
    .inspiration-section {
        padding: 3.5rem 0.15rem 5rem !important;
    }
    
    .inspiration-content {
        max-width: 99% !important;
        padding: 0.8rem 0.25rem !important;
    }
    
    .values-grid {
        margin-top: 0.8rem !important;
    }
    
    .value-item:hover {
        transform: none !important;
    }
    
    header {
        min-height: 45px;
    }
    
    .nav-container {
        height: 45px;
        padding: 0 0.5rem;
    }
    
    /* Logo styling for small screens with higher specificity */
    header a.logo,
    body.publisher-page header a.logo {
        font-size: 1.1rem !important;
        max-width: 230px !important;
    }
    
    .hamburger {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }
    
    footer {
        padding: 0.5rem 0;
    }
    
    .footer-content {
        gap: 0.2rem;
    }
    
    .social-links a {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
        min-height: 32px;
    }
    
    /* Ensure publisher page logo has correct size on small screens */
    .publisher-page .logo {
        font-size: 1rem !important;
        max-width: 230px !important;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: rgba(44, 62, 80, 0.85);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

/* Book Carousel */
.book-carousel {
    padding: 2rem 0 6rem;
    margin-top: -3rem;
    background: linear-gradient(45deg, var(--secondary-color), #2980b9);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    z-index: 1;
}

.book-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/western-pattern.svg');
    opacity: 0.1;
    pointer-events: none;
}

.carousel-container {
    display: flex;
    gap: 0.1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.book-cover {
    width: 240px;
    height: 360px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border-radius: 15px;
    border: 5px solid white;
    transform-origin: center;
    transform: scale(0.9);
}

.book-cover:hover {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.book-cover:not(:hover) {
    transform: scale(0.9);
    opacity: 0.8;
}

.book-carousel .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.75rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.book-carousel .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, white, transparent);
}

/* Swiper overrides */
.swiper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/stars-pattern.svg');
    opacity: 0.2;
    animation: twinkle 10s linear infinite;
}

@keyframes twinkle {
    0% { opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.reviews-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.coming-soon-badge {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coming-soon-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Inspiration Section */
.inspiration-section {
    padding: 5rem 0.75rem 8rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/Barn.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inspiration-content {
    margin: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1000px;
}

.inspiration-text {
    padding: 0.5rem;
}

.inspiration-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding: 0 0.25rem;
    text-align: center;
}

.inspiration-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Medium screens */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Small screens */
@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

.value-item {
    background: rgba(255, 255, 255, 0.75);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.35rem;
}

.value-item p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* About/Publisher Pages */
.content-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
}

.content-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-box {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Author image specific styling */
.author-image {
    max-width: 500px;
    margin: 0 auto 2.5rem;
    display: block;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: block;
}

.content-section h1 {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.content-section p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.website-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.website-link a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.website-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.fa-square-x-twitter {
    font-weight: bold;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/footer-pattern.svg');
    opacity: 0.1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-content p {
    color: white;
    margin: 0;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Form Styling */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

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

.submit-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Info Tables */
.info-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2rem;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.info-table th {
    background: rgba(44, 62, 80, 0.85);
    color: white;
    padding: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    border-radius: 15px;
    text-align: center;
}

.info-table td {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-table p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-table p:last-child {
    margin-bottom: 0;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.resource-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.resource-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-title.contact-title {
    margin: 4rem 0 2rem;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* reCAPTCHA alignment */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Resources Specific Styles */
.resource-card .coming-soon-banner {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%) translateX(5%) rotate(45deg);
    padding: 0.3rem 2rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
}

.contact-title {
    margin-top: 4rem;
}

.contact-section h1.section-title,
.content-section h1.section-title {
    background: rgba(44, 62, 80, 0.85);
    color: white;
    padding: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
} 