/* ============================================
   FARMHOUSE ARTISAN CHEESE - MAIN STYLES
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    font-weight: 300;
}

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

header {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #000;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 0.7em;
    letter-spacing: 3px;
    text-transform: lowercase;
    font-weight: 300;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
     padding: 30px 5%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 100%;
    height: 1px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Logo Container - holds both icon and text */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

/* Logo Icon */
.logo-icon {
    height: 40px;
    width: 40px;
    filter: invert(1); /* Makes the black logo white */
}

/* Logo Text */
.logo-text {
    font-size: 1em;
    font-weight: 200;
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* Legacy support for pages not yet updated */
.logo {
    font-size: 1em;
    font-weight: 200;
    color: #fff;
    text-decoration: none;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85em;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #999;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    list-style: none;
    padding: 20px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid #333;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 30px;
    color: #999;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.8em;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: #fff;
    background: #111;
    padding-left: 35px;
}

.dropdown-trigger {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85em;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
}

.dropdown-trigger:hover {
    color: #999;
}

/* Remove hover effect on touch devices */
@media (hover: none) {
    .dropdown-trigger:hover {
        color: #fff;
    }
}

/* ============================================
   HERO SECTION (Home Page)
   ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    padding: 80px;
}

.hero h1 {
    font-size: 7em;
    margin-bottom: 40px;
    font-weight: 100;
    letter-spacing: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-line {
    width: 80px;
    height: 1px;
    background: #fff;
    margin: 50px auto;
}

.hero p {
    font-size: 1em;
    color: #ccc;
    letter-spacing: 5px;
    font-weight: 300;
    text-transform: lowercase;
    margin-bottom: 60px;
}

.cta-button {
    display: inline-block;
    padding: 18px 60px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    border: 1px solid #fff;
    transition: all 0.5s ease;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75em;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */

.page-hero {
    padding: 120px 8%;
    background: #fafafa;
    text-align: center;
}

.page-hero h1 {
    font-size: 4em;
    margin-bottom: 30px;
    font-weight: 100;
    letter-spacing: 16px;
    text-transform: uppercase;
}

.page-hero p {
    font-size: 1.1em;
    color: #666;
    letter-spacing: 2px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    color: #000;
    font-weight: 100;
    letter-spacing: 12px;
    text-transform: uppercase;
}

/* ============================================
   FEATURES SECTION (Product Grid)
   ============================================ */

.features {
    padding: 60px 8% 100px 8%;
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: #fafafa;
    border-color: #000;
}

.feature-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

/* Add hover effect for the heading */
.feature-content h3 {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #000;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.feature-card:hover .feature-content h3::after {
    width: 80%; /* Underline appears on hover */
}

.feature-content {
    padding: 40px 30px; 
    text-align: center;
}

.feature-number {
    font-size: 1em;
    margin-bottom: 20px;
    color: #000;
    font-weight: 300;
    letter-spacing: 3px;
}

.feature-content p {
    color: #666;
    line-height: 2;
    font-size: 0.95em;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 100px 8%;
    background: #fff;
}

.gallery-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery-item {
    height: 500px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 150px 8%;
    background: #000;
    color: #fff;
}

.about-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    font-size: 3em;
    margin-bottom: 50px;
    font-weight: 100;
    letter-spacing: 12px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1em;
    line-height: 2;
    color: #ccc;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-image {
    height: 600px;
    overflow: hidden;
    border: 1px solid #333;
}

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

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    padding: 120px 8%;
    background: #fafafa;
    text-align: center;
}

.quote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2em;
    font-weight: 100;
    line-height: 1.8;
    color: #000;
    letter-spacing: 2px;
    font-style: italic;
}

.quote-author {
    margin-top: 40px;
    font-size: 0.9em;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-style: normal;
    color: #666;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 8%;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h2 {
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 100;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 1em;
    line-height: 2;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-info .info-group {
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 0.9em;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #000;
}

/* Contact Form */
.contact-form h2 {
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 100;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95em;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

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

.submit-button {
    display: inline-block;
    padding: 18px 60px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    border: 1px solid #000;
    transition: all 0.5s ease;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75em;
    cursor: pointer;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.submit-button:hover {
    background: #fff;
    color: #000;
}

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

footer {
    background: #000;width: 100% !important;
    color: #fff;
    padding: 40px 8% 50px;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-section h3 {
    font-size: 0.9em;
    margin-bottom: 35px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: #999;
    text-decoration: none;
    line-height: 2.5;
    transition: color 0.3s ease;
    font-size: 0.9em;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.75em;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Footer Logo Styling */
.footer-logo {
    display: block;
}

.footer-logo img {
    width: 200px;
    height: auto;
    padding: 5px;
    background: #fff;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero h1 {
        font-size: 4em;
        letter-spacing: 10px;
    }
    
    .page-hero h1 {
        font-size: 3em;
        letter-spacing: 10px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
    /* Reduce padding on smaller screens */
    .features,
    .gallery,
    .about,
    .quote-section,
    .contact-section,
    .page-hero,
    .hero-image video {
        object-position: center;
    }
    
    footer {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    /* Navigation */
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Navigation */
    nav {
        padding: 20px 5%;
    }
    
    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Logo adjustments for mobile */
.logo-icon {
    height: 32px;
    width: 32px;
}

.logo-text {
    font-size: 0.8em;
    letter-spacing: 4px;
}
    
    /* Mobile navigation styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid #222;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 0.9em;
        letter-spacing: 4px;
        text-align: left;
        width: 100%;
        min-height: auto;
    }

    .dropdown-trigger {
        display: block;
        padding: 20px 0;
        font-size: 0.9em;
        letter-spacing: 4px;
        text-align: left;
        width: 100%;
        min-height: auto;
    }
    
    /* Dropdown Menu in mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border-top: none;
        background: transparent;
        transition: max-height 0.3s ease;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0 20px;
        border-top: 1px solid #222;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        font-size: 0.8em;
        padding: 15px 0 15px 20px;
        text-align: left;
        color: #999;
    }
    
    .dropdown-menu a:hover {
        padding-left: 25px;
        background: transparent;
    }
    
    .nav-links a {
        font-size: 0.8em;
        letter-spacing: 2px;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-trigger {
        font-size: 0.8em;
        letter-spacing: 2px;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Dropdown Menu */
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border-top: none;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-menu a {
        font-size: 0.75em;
        padding: 10px 20px;
        text-align: center;
    }
    
    .dropdown-menu a:hover {
        padding-left: 20px;
    }
    
    /* Grid Layouts */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2.5em;
        letter-spacing: 5px;
    }
    
    .hero p {
        font-size: 0.9em;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }
    
    /* Page Hero */
    .page-hero h1 {
        font-size: 2.5em;
        letter-spacing: 8px;
    }
    
    .page-hero p {
        font-size: 1em;
    }
    
    /* Sections */
    .section-title {
        font-size: 2em;
        letter-spacing: 8px;
        margin-bottom: 60px;
    }
    
    .feature-content {
        padding: 40px 30px;
    }
    
    .feature-content h3 {
        font-size: 1.2em;
        letter-spacing: 4px;
    }
    
    .about-text h2 {
        font-size: 2em;
        letter-spacing: 8px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8em;
        letter-spacing: 8px;
    }
    
    .quote {
        font-size: 1.5em;
        letter-spacing: 1px;
    }
    
    /* Footer */
    .footer-logo {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        width: 180px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    /* Navigation */
    .logo {
        font-size: 0.75em;
        letter-spacing: 4px;
    }

    /* Logo adjustments for small mobile */
.logo-icon {
    height: 28px;
    width: 28px;
}

.logo-text {
    font-size: 0.7em;
    letter-spacing: 3px;
}
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.7em;
        letter-spacing: 1px;
    }
    
    .dropdown-trigger {
        font-size: 0.7em;
        letter-spacing: 1px;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 1.8em;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 0.8em;
        letter-spacing: 2px;
    }
    
    .hero-line {
        width: 50px;
        margin: 30px auto;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 0.7em;
        letter-spacing: 3px;
    }
    
    /* Page Hero */
    .page-hero h1 {
        font-size: 1.8em;
        letter-spacing: 6px;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.5em;
        letter-spacing: 6px;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .about-text h2 {
        font-size: 1.5em;
        letter-spacing: 6px;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 1em;
    }
    
    .about-image {
        height: 400px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5em;
        letter-spacing: 6px;
    }
    
    .submit-button {
        width: 100%;
        padding: 15px 40px;
    }
    
    .quote {
        font-size: 1.2em;
    }
    
    /* Footer */
    .footer-logo img {
        width: 160px;
    }
    
    .footer-section h3 {
        font-size: 0.85em;
        letter-spacing: 3px;
    }
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.success-modal.active {
    display: flex;
}

.success-content {
    background: #fff;
    padding: 60px 50px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.success-content h2 {
    font-size: 2em;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.success-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.success-close {
    display: inline-block;
    padding: 18px 60px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 0.75em;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.success-close:hover {
    background: #fff;
    color: #000;
}

/* Newsletter Button */
.newsletter-cta {
    text-align: center;
    padding: 0px 0 40px 0;
}

.newsletter-button {
    display: inline-block;
    padding: 18px 60px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 0.75em;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
}

.newsletter-button:hover {
    background: #fff;
    color: #000;
}

/* Newsletter Modal */
.newsletter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.newsletter-modal.active {
    display: flex;
}

.newsletter-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    padding: 60px 50px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.newsletter-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.5em;
    font-weight: 100;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.newsletter-modal-close:hover {
    color: #000;
}

.newsletter-modal-content h2 {
    font-size: 2em;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter-modal-content p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.newsletter-form .form-group {
    margin-bottom: 25px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    color: #000;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95em;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.newsletter-checkbox input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    height: 20px;
    margin-top: 2px;
}

.newsletter-checkbox label {
    text-transform: none;
    letter-spacing: 1px;
    font-size: 0.9em;
    margin-bottom: 0;
}

.newsletter-submit {
    width: 100%;
    padding: 18px 60px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 0.75em;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-top: 10px;
}

.newsletter-submit:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .newsletter-modal-content {
        padding: 40px 30px;
        width: 95%;
    }
    
    .newsletter-modal-content h2 {
        font-size: 1.5em;
        letter-spacing: 4px;
    }
}