/* Dugout Creek Designs Brand Styles */
:root {
    --dugout-bg: #c7b399;
    --dugout-accent: #a77d52;
    --dugout-green: #2e4b30;
    --dugout-purple: #0d3e6d;
}

.brand-subheader {
    background: var(--dugout-bg);
    padding: 1rem 0;
    border-bottom: 3px solid var(--dugout-accent);
}

.brand-subheader .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
}

/* Removed unused brand-stripe and brand-product-name styles */

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, var(--dugout-bg) 0%, #d4c5a9 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 3rem;
    color: var(--dugout-green);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.hero-headline .football-icon {
    color: var(--dugout-accent);
    margin-left: 0.5rem;
}

.hero-subheadline {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--dugout-green);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hero-price-highlight {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--dugout-purple);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-price-highlight .strike-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.25rem;
}

.hero-cta {
    background: linear-gradient(135deg, var(--dugout-accent) 0%, var(--dugout-green) 100%);
    color: white;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    display: inline-block;
    text-decoration: none;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--dugout-green) 0%, var(--dugout-accent) 100%);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--dugout-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-1px);
}

.trust-badge i {
    color: var(--dugout-accent);
    font-size: 1.1rem;
}

.hero-image {
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .brand-subheader .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .brand-stripe {
        order: -1;
        width: 100%;
        height: 3px;
    }
    
    .brand-product-name {
        font-size: 1.25rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .hero-price-highlight {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        font-size: 1.25rem;
        padding: 0.875rem 2rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-image img {
        height: 300px;
    }
}

/* Product Showcase Section */
.product-showcase {
    background: #fff;
    padding: 4rem 0;
    position: relative;
}

.showcase-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.showcase-headline {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dugout-green);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.showcase-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid var(--dugout-accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    color: var(--dugout-accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-text {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dugout-green);
    line-height: 1.5;
}

.feature-text strong {
    color: var(--dugout-accent);
    font-weight: 600;
}

/* Image Carousel */
.image-carousel {
    margin: 3rem 0;
    position: relative;
}

.carousel-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
}

.carousel-slide {
    flex: 0 0 300px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.02);
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-slide .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    font-family: var(--primary-font);
    font-weight: 500;
    text-align: center;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--dugout-accent);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--dugout-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .showcase-headline {
        font-size: 2rem;
    }
    
    .showcase-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .carousel-slide {
        flex: 0 0 280px;
    }
    
    .carousel-slide img {
        height: 200px;
    }
}

/* Section 3 - Trust Layer */
.trust-layer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-headline {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dugout-green);
    margin-bottom: 2rem;
}

.trust-copy {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--dugout-green);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-copy strong {
    color: var(--dugout-accent);
    font-weight: 600;
}

.trust-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    min-width: 200px;
}

.platform-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.platform-logo {
    height: 40px;
    width: auto;
}

.platform-price {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: #666;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.trust-cta {
    background: linear-gradient(135deg, var(--dugout-accent) 0%, var(--dugout-green) 100%);
    color: white;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.trust-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--dugout-green) 0%, var(--dugout-accent) 100%);
    text-decoration: none;
    color: white;
}

/* Section 4 - Dynamic Media Wall */
.media-wall {
    background: #fff;
    padding: 4rem 0;
}

.media-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.media-headline {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dugout-green);
    margin-bottom: 1rem;
}

.media-subtext {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.media-item:hover {
    transform: scale(1.02);
}

.media-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

/* Specific positioning for lifestyle images */
.media-item img[src*="football_lifestyle_1"],
.media-item img[src*="football_lifestyle_3"] {
    object-position: top;
}

.media-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    font-family: var(--primary-font);
}

.media-type {
    font-size: 0.9rem;
    color: var(--dugout-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    color: #9ca3af;
    font-size: 1rem;
}

.media-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dugout-accent);
}

/* Section 5 - Urgency Layer */
.urgency-layer {
    background: var(--dugout-bg);
    padding: 4rem 0;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    color: var(--dugout-accent);
    margin-bottom: 1.5rem;
}

.urgency-content p {
    color: var(--dugout-accent);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.urgency-headline {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.urgency-copy {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.urgency-copy strong {
    font-weight: 700;
    color: #fff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.timer-block {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 100px;
    border: 1px solid rgba(255,255,255,0.2);
}

.timer-number {
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.timer-label {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.urgency-cta {
    background: white;
    color: var(--dugout-green);
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.4rem;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    margin-top: 1rem;
}

.urgency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: #f8f9fa;
    text-decoration: none;
    color: var(--dugout-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-headline,
    .media-headline,
    .urgency-headline {
        font-size: 2rem;
    }
    
    .trust-platforms {
        gap: 1.5rem;
    }
    
    .platform-item {
        min-width: 160px;
        padding: 1.5rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .timer-block {
        min-width: 80px;
        padding: 1rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
}

/* Section 6 - Social Proof / Testimonials */
.social-proof {
    background: #f8f9fa;
    padding: 4rem 0;
    display: none; /* Hidden until content is added */
}

.social-proof.has-content {
    display: block;
}

.social-proof-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-proof-headline {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dugout-green);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.testimonial-item:hover {
    transform: translateY(-2px);
}

.testimonial-content {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dugout-green);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dugout-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dugout-green);
}

.testimonial-source {
    font-size: 0.9rem;
    color: #666;
}

/* Section 7 - Cross-Promo / Brand Story */
.brand-story {
    background: linear-gradient(135deg, var(--dugout-green) 0%, var(--dugout-purple) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="brand-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23brand-pattern)"/></svg>');
    pointer-events: none;
}

.brand-story-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.brand-story-headline {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-story-copy {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.brand-story-cta {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.brand-story-cta:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Section 8 - Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dugout-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--dugout-accent);
}

.payment-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.payment-badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-tagline {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #95a5a6;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dugout-accent) 0%, var(--dugout-green) 100%);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none; /* Hidden on desktop */
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-button {
    width: 100%;
    background: white;
    color: var(--dugout-green);
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.sticky-cta-button:hover {
    background: #f8f9fa;
    transform: scale(1.02);
    text-decoration: none;
    color: var(--dugout-green);
}

/* Blitz Optimizations */
.hero-headline,
.showcase-headline,
.trust-headline,
.media-headline,
.urgency-headline,
.social-proof-headline,
.brand-story-headline {
    font-size: 3rem; /* Larger, bolder headers */
    font-weight: 800; /* Extra bold */
    line-height: 1.1;
}

/* Enhanced Visual Hierarchy */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--dugout-accent) 50%, transparent 100%);
    margin: 2rem 0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
    
    .hero-headline,
    .showcase-headline,
    .trust-headline,
    .media-headline,
    .urgency-headline,
    .social-proof-headline,
    .brand-story-headline {
        font-size: 2.2rem; /* Larger on mobile too */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-badges {
        justify-content: center;
    }
    
    /* Add bottom padding to prevent sticky CTA overlap */
    body {
        padding-bottom: 80px;
    }
}
