/* Import the actual fonts from Thriller Studios */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@400;700&family=Newsreader:wght@200;700&family=DM+Serif+Display:wght@400&display=swap');

/* CSS Variables from Thriller Studios */
:root {
    /* Font families */
    --font-body--family: "Red Hat Text", sans-serif;
    --font-body--style: normal;
    --font-body--weight: 400;
    --font-subheading--family: Newsreader, serif;
    --font-subheading--style: normal;
    --font-subheading--weight: 200;
    --font-heading--family: "DM Serif Display", serif;
    --font-heading--style: normal;
    --font-heading--weight: 400;
    --font-accent--family: "Red Hat Text", sans-serif;
    --font-accent--style: normal;
    --font-accent--weight: 400;

    /* Font sizes - EXACT from original */
    --font-size--paragraph: 1.125rem;
    --font-size--h1: clamp(7.5rem, 18.4vw, 11.5rem);
    --font-size--h2: clamp(3.0rem, 12.0vw, 7.5rem);
    --font-size--h3: clamp(1.75rem, 4.8vw, 3.0rem);
    --font-size--h4: 1.5rem;
    --font-size--h5: 0.75rem;
    --font-size--h6: 0.75rem;

    /* Font properties */
    --font-paragraph--weight: 400;
    --font-paragraph--letter-spacing: var(--letter-spacing--body-normal);
    --font-paragraph--size: var(--font-size--paragraph);
    --font-paragraph--family: var(--font-body--family);
    --font-paragraph--style: var(--font-body--style);
    --font-paragraph--case: ;
    --font-paragraph--line-height: var(--line-height--body-normal);
    
    --font-h1--weight: var(--font-heading--weight);
    --font-h1--letter-spacing: var(--letter-spacing--heading-tight);
    --font-h1--size: var(--font-size--h1);
    --font-h1--family: var(--font-heading--family);
    --font-h1--style: var(--font-heading--style);
    --font-h1--case: none;
    --font-h1--line-height: 0.8;
    
    --font-h2--weight: var(--font-heading--weight);
    --font-h2--letter-spacing: var(--letter-spacing--heading-normal);
    --font-h2--size: var(--font-size--h2);
    --font-h2--family: var(--font-heading--family);
    --font-h2--style: var(--font-heading--style);
    --font-h2--case: none;
    --font-h2--line-height: 0.8;
    
    --font-h3--weight: var(--font-heading--weight);
    --font-h3--letter-spacing: var(--letter-spacing--heading-normal);
    --font-h3--size: var(--font-size--h3);
    --font-h3--family: var(--font-heading--family);
    --font-h3--style: var(--font-heading--style);
    --font-h3--case: none;
    --font-h3--line-height: var(--line-height--display-normal);

    /* Letter spacing */
    --letter-spacing--body-normal: 0;
    --letter-spacing--heading-tight: -0.02em;
    --letter-spacing--heading-normal: -0.01em;

    /* Line heights */
    --line-height--body-normal: 1.4;
    --line-height--display-tight: 1.0;
    --line-height--display-normal: 1.1;

    /* Colors */
    --color-background: rgb(255 255 255 / 1.0);
    --color-background-rgb: 255 255 255;
    --color-foreground: rgb(0 0 0 / 1.0);
    --color-foreground-rgb: 0 0 0;
    --color-foreground-heading: rgb(0 0 0 / 1.0);
    --color-foreground-heading-rgb: 0 0 0;

    /* Button styles */
    --button-font-family-primary: var(--font-accent--family);
    --button-font-family-secondary: var(--font-accent--family);
    --button-font-weight-primary: default;
    --button-font-weight-secondary: default;
    --button-text-case-primary: default;
    --button-text-case-secondary: default;
}

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

body {
    font-family: var(--font-body--family);
    font-style: var(--font-body--style);
    font-weight: var(--font-body--weight);
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    color: var(--color-foreground);
    background-color: var(--color-background);
}

/* Skip Link */
.skip-to-content-link {
    position: absolute;
    overflow: hidden;
    height: 1px;
    left: -99999px;
    word-wrap: normal !important;
}

.skip-to-content-link:focus {
    z-index: 1000;
    overflow: auto;
    width: auto;
    height: auto;
    padding: 16px 40px;
    left: 24px;
    top: 24px;
    box-shadow: 0 0 0 2px #fff;
    background: #000;
    color: #fff;
}

/* Header - TRANSPARENT */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 100;
    padding: 20px 0;
}

/* Scrolling Text Banner */
.scrolling-text-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 30px 25px 12px 25px;
    z-index: 10;
    white-space: nowrap;
}

.scrolling-text-banner--bottom {
    top: auto;
    bottom: 0;
    padding: 12px 25px 30px 25px;
}

.scrolling-text-content {
    display: inline-flex;
    animation: scroll-text 30s linear infinite;
    gap: 60px;
    transform: rotate(45deg);
}

.scrolling-text-content span {
    font-style: italic;
    color: #fff;
    font-size: 18px;
    font-family: "Montserrat", "Futura", "Avenir", "Helvetica Neue", sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 400;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left,
.header-center,
.header-right {
    flex: 1;
}

.header-center {
    text-align: center;
}

.header-right {
    text-align: right;
}

.logo-text {
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.logo-gif {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: -5px;
    position: relative;
    z-index: 2;
}

.logo-studios {
    font-family: var(--font-heading--family);
    font-weight: var(--font-heading--weight);
    font-style: var(--font-heading--style);
    color: #fff;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-size: calc(1.5rem - 6px);
}

/* Account Section */
.account-section {
    position: relative;
    cursor: pointer;
}

.account-text {
    font-family: var(--font-body--family);
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.account-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.account-section:hover .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 8px 0;
}

.other-signin {
    padding: 8px 16px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--font-body--family);
}

.signin-link {
    display: block;
    padding: 8px 16px;
    color: var(--color-foreground);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--font-body--family);
}

.signin-link:hover {
    background-color: #f8f8f8;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body--family);
}

.dropdown-item:hover {
    background-color: #f8f8f8;
}

/* Cart Section */
.cart-section {
    position: relative;
    cursor: pointer;
}

.cart-text {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    font-family: var(--font-body--family);
}

.cart-count {
    font-weight: 400;
}

.cart-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.cart-section:hover .cart-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-empty {
    padding: 20px;
    text-align: center;
}

.cart-empty p {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body--family);
}

.cart-empty a {
    color: var(--color-foreground);
    text-decoration: underline;
}

.continue-shopping {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    margin-top: 12px;
    transition: background-color 0.2s ease;
    font-family: var(--font-body--family);
}

.continue-shopping:hover {
    background: #333;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Hero Sections - All sections are full-screen with images/video */
.hero-section {
    position: relative;
    height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-section {
    position: relative;
    height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.local-section {
    position: relative;
    height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Services Section - Video background */
.services-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    padding: 0;
}

.service-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1000px;
    padding: 0 24px;
}

.service-container--black {
    background: #000;
    text-align: center;
}

.service-container--video {
    position: relative;
    height: 1000px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-container--video .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-container--video .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
}

.service-container--video .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.service-container--video .service-item {
    transform: translateY(-50px);
}

.services-section .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* White Section - Copy-based with white background */
.white-section {
    background: #fff;
    color: #000;
    padding: 120px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.white-section-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-block--white h1 {
    font-family: var(--font-h1--family);
    font-style: var(--font-h1--style);
    font-weight: var(--font-h1--weight);
    font-size: var(--font-h2--size);
    line-height: 0.8;
    letter-spacing: var(--font-h2--letter-spacing);
    color: #000;
    margin-bottom: 32px;
}

.text-block--white-desc p {
    color: #666;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 590px;
    margin: 0 auto;
}

.white-section .button-primary {
    --button-color: #fff !important;
    --button-background-color: #000;
    --button-border-color: #000;
    color: #fff !important;
    text-decoration: none !important;
}

.white-section .button-primary:hover {
    --button-color: #fff !important;
    --button-background-color: #333;
    --button-border-color: #333;
    color: #fff !important;
    text-decoration: none !important;
}

.white-section-container > a {
    color: #000;
    text-decoration: underline;
    font-family: var(--font-paragraph--family);
    font-size: var(--font-paragraph--size);
    display: inline-block;
}

.white-section-container > a:hover {
    opacity: 0.7;
}

.service-container .service-item {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.services-subtitle {
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 auto 32px;
    text-align: center;
    width: 100%;
}

.service-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 24px;
}

.service-item h3 {
    font-family: var(--font-h2--family);
    font-style: var(--font-h2--style);
    font-weight: var(--font-h2--weight);
    font-size: var(--font-h2--size);
    line-height: 0.8;
    letter-spacing: var(--font-h2--letter-spacing);
    color: #fff;
    margin: 0;
    text-align: center;
    text-shadow: none;
    box-shadow: none;
    width: 100%;
}

.service-item p {
    font-family: var(--font-paragraph--family);
    font-style: var(--font-paragraph--style);
    font-weight: var(--font-paragraph--weight);
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    letter-spacing: var(--font-paragraph--letter-spacing);
    color: rgba(255, 255, 255, 0.9);
    margin: 35px 0 0;
    text-align: center;
    text-shadow: none;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
}

.stats-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 60px auto 0;
    max-width: 1000px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.stat-value {
    font-family: var(--font-h2--family);
    font-size: 30px;
    font-weight: var(--font-h2--weight);
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-description {
    margin-top: 60px !important;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* Video Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Container */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 0 24px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 24px;
    background: #000;
    color: #fff;
    text-align: center;
}

.newsletter-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-section .text-block h3 {
    color: #fff;
    margin-bottom: 50px;
}

.newsletter-section .email-input {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.newsletter-section .email-input:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.newsletter-section .email-input::placeholder {
    color: #999;
}

/* Text Blocks - EXACT styling from original with MORE PADDING */
.text-block {
    width: 100%;
    margin-bottom: 24px;
}

.text-block > *:first-child {
    margin-block-start: 0;
}

.text-block > *:last-child {
    margin-block-end: 0;
}

.text-block h1 {
    font-family: var(--font-h1--family);
    font-style: var(--font-h1--style);
    font-weight: var(--font-h1--weight);
    font-size: var(--font-h1--size);
    line-height: var(--font-h1--line-height);
    letter-spacing: var(--font-h1--letter-spacing);
    text-transform: var(--font-h1--case);
    color: var(--font-h1--color);
    margin-bottom: 50px;
}

.text-block h2 {
    font-family: var(--font-h2--family);
    font-style: var(--font-h2--style);
    font-weight: var(--font-h2--weight);
    font-size: var(--font-h2--size);
    line-height: var(--font-h2--line-height);
    letter-spacing: var(--font-h2--letter-spacing);
    text-transform: var(--font-h2--case);
    color: var(--font-h2--color);
    margin-bottom: 50px;
}

.text-block--story h1,
.text-block--local h1 {
    font-family: var(--font-h1--family);
    font-style: var(--font-h1--style);
    font-weight: var(--font-h1--weight);
    font-size: var(--font-h2--size);
    line-height: 0.8;
    letter-spacing: var(--font-h2--letter-spacing);
}

.text-block h3 {
    font-family: var(--font-h3--family);
    font-style: var(--font-h3--style);
    font-weight: var(--font-h3--weight);
    font-size: var(--font-h3--size);
    line-height: var(--font-h3--line-height);
    letter-spacing: var(--font-h3--letter-spacing);
    text-transform: var(--font-h3--case);
    color: var(--font-h3--color);
    margin-bottom: 50px;
}

.text-block p {
    font-family: var(--font-paragraph--family);
    font-style: var(--font-paragraph--style);
    font-weight: var(--font-paragraph--weight);
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    letter-spacing: var(--font-paragraph--letter-spacing);
    text-transform: var(--font-paragraph--case);
    color: #666;
    margin-bottom: 16px;
    margin-top: 0;
}

/* Hero text styling - NO SHADOWS */
.hero-container .text-block h1,
.hero-container .text-block h2,
.hero-container .text-block p {
    color: #fff;
}

.hero-container .text-block p {
    color: rgba(255, 255, 255, 0.9);
}

/* Spacer Block */
.spacer-block {
    height: var(--spacer-size);
}

/* Buttons - WIDER WITH MORE PADDING */
.button {
    display: inline-grid;
    align-content: center;
    text-decoration: none;
    text-align: center;
    color: var(--button-color);
    appearance: none;
    background-color: var(--button-background-color);
    border: none;
    font-family: var(--button-font-family-primary);
    font-style: var(--button-font-style-primary);
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    margin-block: 0;
    transition: color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    width: fit-content;
    min-width: 200px;
    box-shadow: inset 0 0 0 var(--button-border-width) var(--button-border-color);
    padding-block: 20px;
    padding-inline: 40px;
    border-radius: 4px;
    font-weight: var(--button-font-weight-primary);
    text-transform: var(--button-text-case-primary);
}

.button-primary {
    --button-color: #000;
    --button-background-color: #fff;
    --button-border-color: #fff;
    --button-border-width: 1px;
}

.button-primary:hover {
    --button-color: #000;
    --button-background-color: #f0f0f0;
    --button-border-color: #f0f0f0;
}

.button-secondary {
    --button-color: #000;
    --button-background-color: #fff;
    --button-border-color: #fff;
    --button-border-width: 1px;
    text-decoration: none !important;
}

.button-secondary:hover {
    --button-color: #000;
    --button-background-color: #f0f0f0;
    --button-border-color: #f0f0f0;
    text-decoration: none !important;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: var(--font-paragraph--size);
    background: #fff;
    font-weight: var(--font-paragraph--weight);
    font-family: var(--font-paragraph--family);
}

.email-input:focus {
    outline: none;
    border-color: #000;
}

.email-input::placeholder {
    color: #999;
}

/* Footer - BLACK BACKGROUND WITH WHITE TEXT */
.footer {
    padding: 80px 24px;
    background: #000;
    color: #fff;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-logo-gif {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: -5px;
    position: relative;
    z-index: 2;
}

.footer-logo-studios {
    font-family: var(--font-heading--family);
    font-weight: var(--font-heading--weight);
    font-style: var(--font-heading--style);
    color: #fff;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-size: var(--font-h2--size);
    line-height: 0.8;
    letter-spacing: var(--font-h2--letter-spacing);
}

.footer-left p {
    color: #fff;
    font-size: 0.75rem;
    font-weight: var(--font-paragraph--weight);
    font-family: var(--font-paragraph--family);
}

.footer-left a {
    color: #fff;
    text-decoration: none;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: var(--font-paragraph--weight);
    transition: color 0.2s ease;
    font-family: var(--font-paragraph--family);
}

.footer-link:hover {
    color: #ccc;
}

.social-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .header-left,
    .header-center,
    .header-right {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .button {
        min-width: 160px;
        padding-block: 16px;
        padding-inline: 32px;
    }

    /* Stats Container Mobile Fix */
    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .stat-item {
        flex: 1 1 40%; /* Allow items to take up approx half width, minus gap */
        min-width: 120px;
    }
    
    .stat-label {
        white-space: normal; /* Allow text to wrap */
        font-size: 0.8rem;
    }

    .stat-value {
        font-size: 24px;
    }

    /* Service Item Heading Fix */
    .service-item h3 {
        font-size: clamp(2rem, 8vw, 3rem); /* reduce size on mobile */
        padding: 0 10px; /* prevent edge touching */
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 40px 16px;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .footer {
        padding: 32px 16px;
    }
    
    .button {
        min-width: 140px;
        padding-block: 14px;
        padding-inline: 28px;
    }
}
