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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Benefits Bar - Removed */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 90;
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.nav {
    padding: 0;
}

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

.nav__menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.nav__menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

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

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

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

.nav__logo {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.nav__logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.nav__menu--desktop {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
}

.nav__item {
    position: relative;
}

.nav__item--logo {
    padding: 0 25px;
}

.nav__link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 25px;
    display: block;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #666;
}

.nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav__dropdown a {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav__dropdown a:hover {
    background-color: #f8f8f8;
}

.nav__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav__item--search:hover .nav__search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__search-form {
    padding: 20px;
}

.nav__search-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Inter', monospace;
}

.nav__cart-count {
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

.nav__cart-mobile {
    display: none;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Navigation - Simple Overlay Design */
.nav__mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__mobile.active {
    opacity: 1;
    pointer-events: auto;
}

.nav__mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__mobile.active .nav__mobile-overlay {
    opacity: 1;
}

.nav__mobile-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 80px 0 40px;
}

.nav__mobile.active .nav__mobile-content {
    transform: translateX(0);
}

.nav__mobile-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.nav__mobile-close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.nav__mobile-close span:nth-child(1) {
    transform: rotate(45deg);
}

.nav__mobile-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.nav__mobile-close:hover span {
    background-color: #8B4513;
}

.nav__mobile-menu {
    list-style: none;
    padding: 0 20px;
}

.nav__mobile-item {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__mobile.active .nav__mobile-item {
    opacity: 1;
    transform: translateX(0);
}

.nav__mobile.active .nav__mobile-item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav__mobile.active .nav__mobile-item:nth-child(2) {
    transition-delay: 0.15s;
}

.nav__mobile.active .nav__mobile-item:nth-child(3) {
    transition-delay: 0.2s;
}

.nav__mobile.active .nav__mobile-item:nth-child(4) {
    transition-delay: 0.25s;
}

.nav__mobile.active .nav__mobile-item:nth-child(5) {
    transition-delay: 0.3s;
}

.nav__mobile.active .nav__mobile-item:nth-child(6) {
    transition-delay: 0.35s;
}

.nav__mobile-link {
    display: flex;
    align-items: center;
    padding: 16px 0;
    text-decoration: none;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.nav__mobile-link:hover {
    padding-left: 10px;
    color: #4eff02;
}

.nav__mobile-link-text {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav__mobile-link--active {
    color: #4eff02 !important;
    font-weight: 600;
}

/* Main Content */
.main {
    margin-top: 60px; /* Adjust based on header height */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero__image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.hero__text {
    color: #ffffff;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 200;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero__title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero__title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero__title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero__title-line--accent {
    color: #4eff02;
    font-weight: 300;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero__cta {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    border: 2px solid transparent;
}

.hero__cta--primary {
    background-color: #4eff02;
    color: #1a1a1a;
    border-color: #4eff02;
}

.hero__cta--primary:hover {
    background-color: transparent;
    color: #4eff02;
    border-color: #4eff02;
    transform: translateY(-2px);
}

.hero__cta--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero__cta--secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero__stat {
    text-align: center;
    color: #ffffff;
}

.hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: #4eff02;
    margin-bottom: 5px;
}

.hero__stat-label {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    margin-bottom: 40px;
}

.featured-products__title {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', monospace;
}

.featured-products__controls {
    display: flex;
    gap: 20px;
}

.featured-products__prev,
.featured-products__next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.featured-products__prev:hover,
.featured-products__next:hover {
    opacity: 0.6;
}

.featured-products__slider {
    overflow: hidden;
}

.featured-products__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

/* Product Card */
.product-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

.product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card__link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card__link::after {
    content: '+ Add to Cart';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
}

.product-card__link:hover::after {
    opacity: 1;
}

.product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f8f8f8;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card__link:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 13px;
    line-height: 1.4;
}

.product-card__details {
    flex: none;
}

.product-card__category {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-card__name {
    font-weight: 500;
    text-transform: uppercase;
}

.product-card__name span {
    display: block;
}

.product-card__notes {
    flex: none;
}

.product-card__notes h4 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-card__notes p {
    opacity: 0.8;
}

.product-card__price {
    flex: none;
    text-align: left;
    font-weight: 500;
}

.product-card__link:hover .product-card__info {
    border-color: #666;
    color: #666;
}

/* Newsletter */
.newsletter {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
}

.newsletter__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter__title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.newsletter__description {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.newsletter__form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter__input-group {
    display: flex;
    gap: 0;
    border: 1px solid #ffffff;
    border-radius: 30px;
    overflow: hidden;
}

.newsletter__input {
    flex: 1;
    padding: 15px 20px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', monospace;
}

.newsletter__input::placeholder {
    color: #ffffff;
    opacity: 0.8;
}

.newsletter__button {
    background-color: #4eff02;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter__button:hover {
    background-color: #ffffff;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #666;
}

.footer__bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer__legal-links {
    display: flex;
    gap: 20px;
}

.footer__legal-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal-links a:hover {
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .featured-products__track {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav__menu--desktop {
        display: none;
    }
    
    .nav__menu-toggle {
        display: flex;
    }
    
    .nav__cart-mobile {
        display: block;
    }
    
    .nav__logo-image {
        height: 32px;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__title {
        font-size: clamp(2rem, 8vw, 4rem);
        margin-bottom: 20px;
    }
    
    .hero__subtitle {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        margin-bottom: 30px;
    }
    
    .hero__actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__cta {
        padding: 14px 28px;
        font-size: 13px;
        min-width: 160px;
    }
    
    .hero__stats {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    
    .hero__stat-number {
        font-size: 2rem;
    }
    
    .featured-products__header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .featured-products__controls {
        align-self: flex-end;
    }
    
    .product-card {
        flex: 0 0 100%;
    }
    
    .product-card__info {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-card__details,
    .product-card__notes,
    .product-card__price {
        flex: none;
    }
    
    .product-card__price {
        text-align: left;
    }
    
    .newsletter__title {
        font-size: 24px;
    }
    
    .newsletter__input-group {
        flex-direction: column;
        border-radius: 0;
    }
    
    .newsletter__input,
    .newsletter__button {
        border-radius: 0;
    }
    
    .footer__legal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer__legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__cta {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 180px;
    }
    
    .featured-products {
        padding: 60px 0;
    }
    
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter__title {
        font-size: 20px;
    }
    
    .newsletter__description {
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__text {
    animation: fadeInUp 0.8s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #4eff02;
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    padding: 80px 0 40px;
    text-align: center;
    background-color: #f8f8f8;
}

.page-header__title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header__description {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Categories */
.shop-categories {
    padding: 80px 0;
}

.shop-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.shop-category {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.shop-category:hover {
    transform: translateY(-5px);
}

.shop-category__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shop-category__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.shop-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-category:hover .shop-category__image img {
    transform: scale(1.05);
}

.shop-category__content {
    padding: 30px 20px;
    text-align: center;
    background-color: #ffffff;
}

.shop-category__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-category__description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Featured Products Grid */
.featured-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Active Navigation States */
.nav__link--active {
    color: #666 !important;
}

.nav__mobile-link--active {
    color: #666 !important;
}

/* Coffee Categories */
.coffee-categories {
    padding: 80px 0;
}

.coffee-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.coffee-category {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.coffee-category:hover {
    transform: translateY(-5px);
}

.coffee-category__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.coffee-category__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.coffee-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coffee-category:hover .coffee-category__image img {
    transform: scale(1.05);
}

.coffee-category__content {
    padding: 30px 20px;
    text-align: center;
    background-color: #ffffff;
}

.coffee-category__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coffee-category__description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Featured Coffee */
.featured-coffee {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.featured-coffee__header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-coffee__title {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-coffee__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .coffee-categories {
        padding: 60px 0;
    }

    .coffee-categories__grid {
        grid-template-columns: 1fr;
    }

    .featured-coffee {
        padding: 60px 0;
    }

    .featured-coffee__grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .benefits-bar,
    .header,
    .footer,
    .newsletter {
        display: none;
    }
    
    .main {
        margin-top: 0;
    }
}
