/* GEOSEEK - Modern Minimalist Design */
/* Color Scheme: #004a76 (Primary Blue) and White */

:root {
    --primary-color: #004a76;
    --primary-dark: #003857;
    --primary-light: #005a96;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 74, 118, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 74, 118, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

/* Contour Lines Background Pattern (Isohips/Equipotential Lines) */
/* SVG pattern is now in base.html for better visibility */
/* CSS fallback for additional subtle pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        /* Additional subtle gradient layers */
        repeating-linear-gradient(45deg, transparent, transparent 98px, rgba(0, 74, 118, 0.15) 98px, rgba(0, 74, 118, 0.15) 100px),
        repeating-linear-gradient(135deg, transparent, transparent 102px, rgba(0, 74, 118, 0.15) 102px, rgba(0, 74, 118, 0.15) 104px);
    background-size: 
        200px 200px,
        220px 220px;
    background-position:
        0 0,
        50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Custom Background Pattern Overlay */
.background-pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
}

/* Ensure content is above background */
.header,
.main-content,
.footer {
    position: relative;
    z-index: 1;
}

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

/* Test Mode Warning Banner */
.test-mode-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 101;
    box-shadow: 0 2px 10px rgba(238, 90, 36, 0.3);
    animation: slideDown 0.5s ease;
}

.test-mode-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.test-mode-icon {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.test-mode-text {
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.5s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Language Selector */
.language-selector {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#language-select {
    padding: 8px 32px 8px 12px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23004a76' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    transition: var(--transition);
    min-width: 120px;
}

#language-select:hover {
    background-color: rgba(0, 74, 118, 0.05);
    border-color: var(--primary-dark);
}

#language-select:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(0, 74, 118, 0.1);
}

#language-form {
    margin: 0;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 1.5px solid rgba(0, 74, 118, 0.25);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75));
    box-shadow: 0 4px 12px rgba(0, 74, 118, 0.15);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.back-home-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0, 74, 118, 0.25);
}

.back-home-link i {
    font-size: 0.85rem;
}

/* EU Logo */
.eu-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: 0;
    opacity: 0.9;
    transition: var(--transition);
}

.eu-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.eu-logo svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.eu-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding-bottom: 40px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

/* Video Background Wrapper - INSIDE CONTENT AREA, BEHIND TEXT */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 8px;
}

.hero-background-video,
.hero-background-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cover the entire area, scale up if needed */
    object-fit: cover;
    object-position: center;
    /* Satin effect (smooth, glossy) - less pronounced */
    filter: saturate(1.1) contrast(0.95) brightness(0.9) blur(0.3px);
    /* Video more visible */
    opacity: 1;
    /* Ensure video stays behind content */
    z-index: 0;
}

/* GIF specific styles */
.hero-background-gif {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video overlay for text readability - ABOVE VIDEO, BELOW TEXT - LESS WHITE */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Content MUST BE ABOVE VIDEO AND OVERLAY */
.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 40px 60px;
    min-height: 200px;
}

.company-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 10;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8), 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* Action Buttons Section */
.action-buttons-section {
    padding: 40px 0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-width: 280px;
    justify-content: center;
}

.action-btn i {
    font-size: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--white);
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 3px solid rgba(0, 74, 118, 0.35);
    outline-offset: 3px;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border-color: rgba(0, 74, 118, 0.35);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-light {
    background: rgba(0, 74, 118, 0.08);
    color: var(--primary-color);
}

.btn-light:hover {
    background: rgba(0, 74, 118, 0.16);
    color: var(--primary-color);
}

.btn-success {
    background: #46b450;
    border-color: #46b450;
    color: #ffffff;
}

.btn-success:hover {
    background: #3a9e43;
    border-color: #3a9e43;
}

.btn-accent {
    background: #004a76;
    border-color: #004a76;
    color: #ffffff;
}

.btn-accent:hover {
    background: #003a5b;
    border-color: #003a5b;
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #1ebe5c;
    border-color: #1ebe5c;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    min-width: 260px;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

.btn-icon-only {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
}

.btn-icon-only i {
    font-size: 1.1rem;
}

/* Homepage Video Section */
.homepage-video-section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.homepage-video-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.homepage-video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    /* Ensure video respects container width */
    box-sizing: border-box;
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
    .homepage-video-section {
        padding: 30px 0;
    }
    
    .homepage-video-wrapper {
        border-radius: 4px;
    }
}

/* Expertise Section */
.expertise-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(0, 74, 118, 0.02) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-top: 1px solid rgba(0, 74, 118, 0.1);
    border-bottom: 1px solid rgba(0, 74, 118, 0.1);
    position: relative;
    z-index: 1;
}

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

.expertise-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 74, 118, 0.08);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

/* Articles Section */
.articles-section {
    padding: 60px 0;
}

/* Search Section Image */
.search-image-section {
    margin-bottom: 40px;
    width: 100%;
}

.search-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.search-section-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    /* Ensure image respects container width */
    box-sizing: border-box;
}

/* Responsive adjustments for search image */
@media (max-width: 768px) {
    .search-image-section {
        margin-bottom: 30px;
    }
    
    .search-image-wrapper {
        border-radius: 4px;
    }
}

/* Search Section */
.search-section {
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
}

.search-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--text-dark);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    padding: 18px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.search-btn:hover {
    background-color: var(--primary-dark);
}

/* Letter Navigation */
.letter-nav-section {
    margin-bottom: 50px;
}

.letter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    border-radius: 12px;
}

.letter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.letter-link:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.letter-link.disabled {
    background-color: var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.letter-link.disabled:hover {
    transform: none;
}

/* Articles Grid */
.articles-grid-section {
    margin-top: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.language-indicator {
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 12px;
    vertical-align: middle;
    opacity: 0.8;
    transition: var(--transition);
    cursor: help;
}

.language-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

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

.article-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.article-card:hover::before {
    transform: scaleY(1);
}

.article-letter-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.article-views i {
    margin-right: 5px;
}

.no-articles {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 60px 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-text {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-link a {
    color: var(--white);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-link a:hover {
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.6);
}

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: opacity var(--transition-duration) ease, transform var(--transition-duration) ease;
}

.payment-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-nav-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.footer-nav-link:hover {
    border-bottom-color: var(--white);
}

.language-switch {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.language-switch:hover {
    border-bottom-color: var(--white);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}


.fade-in {
    animation: fade-in 0.8s ease;
}

.fade-in-up {
    animation: fade-in-up 0.8s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Test Mode Banner - Mobile */
    .test-mode-banner {
        padding: 10px 0;
    }
    
    .test-mode-content {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    .test-mode-icon {
        font-size: 16px;
    }

    .header-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .language-selector {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
        order: 3;
    }

    .back-home-link {
        margin-top: 8px;
        padding: 5px 10px;
        font-size: 0.75rem;
        box-shadow: 0 3px 8px rgba(0, 74, 118, 0.15);
    }

    #language-select {
        min-width: 100px;
        padding: 6px 28px 6px 10px;
        font-size: 0.85rem;
    }

    .eu-logo {
        position: relative;
        right: auto;
        margin-top: 0;
        order: 2;
    }

    .eu-logo svg {
        width: 45px;
        height: 30px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 40px 0 30px;
        min-height: 150px;
    }

    .hero-content {
        padding: 30px 20px;
        min-height: 150px;
    }

    .hero-background-video,
    .hero-background-gif {
        filter: saturate(1.1) contrast(0.95) brightness(0.9) blur(0.2px);
        opacity: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-video-overlay {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0.55) 100%
        );
    }

    .company-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .action-btn {
        min-width: 100%;
        padding: 14px 24px;
    }

    .search-form {
        border-radius: 12px;
    }

    .letter-nav {
        padding: 15px;
    }

    .letter-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-payment-logos {
        justify-content: center;
        margin-top: 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .action-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .search-input {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .search-btn {
        padding: 15px 24px;
    }

    .article-card {
        padding: 20px;
    }

    .expertise-text {
        font-size: 1rem;
        padding: 24px 20px;
    }
}

/* Performance Optimizations */
.article-card,
.action-btn,
.letter-link {
    will-change: transform;
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .header,
    .footer {
        display: none;
    }
}

