* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.content {
    text-align: center;
    background: linear-gradient(145deg, #8b0000 0%, #cc0000 50%, #8b0000 100%);
    border: 4px solid #ffd700;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 215, 0, 0.3),
                inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.title {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8),
                 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.image-wrapper {
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.postcard-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    margin-bottom: 30px;
    padding: 18px 50px;
    font-size: 22px;
    font-weight: bold;
    color: #8b0000;
    background: linear-gradient(145deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border: 3px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
                0 0 15px rgba(255, 215, 0, 0.6),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(255, 215, 0, 0.8),
                inset 0 2px 5px rgba(255, 255, 255, 0.4);
    background: linear-gradient(145deg, #ffed4e 0%, #ffd700 50%, #ffed4e 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.info-text strong {
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Tablet styles */
@media (min-width: 768px) {
    .content {
        padding: 60px 40px;
    }
    
    .title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 40px 0;
    }
    
    .image-wrapper {
        padding: 15px;
    }
    
    .cta-button {
        padding: 22px 60px;
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .info-text {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .content {
        padding: 80px 60px;
    }
    
    .title {
        font-size: 42px;
        margin-bottom: 50px;
    }
    
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 50px 0;
    }
    
    .image-wrapper {
        padding: 20px;
    }
    
    .cta-button {
        padding: 25px 70px;
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .info-text {
        font-size: 20px;
        margin-bottom: 50px;
    }
}

/* Mobile small screens */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .content {
        padding: 30px 15px;
        border-width: 3px;
    }
    
    .title {
        font-size: 22px;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }
    
    .images-grid {
        gap: 15px;
        margin: 25px 0;
    }
    
    .image-wrapper {
        padding: 8px;
        border-width: 2px;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 18px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .info-text {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
}

/* Footer styles */
.site-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    font-size: 14px;
}

.site-footer a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.footer-separator {
    margin: 0 10px;
    color: rgba(255, 215, 0, 0.5);
}

/* Policy pages styles */
.policy-content {
    max-width: 900px;
}

.policy-redirect {
    text-align: center;
    padding: 40px 20px;
}

.redirect-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.docs-link {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #8b0000;
    background: linear-gradient(145deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border: 3px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
                0 0 15px rgba(255, 215, 0, 0.6),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.docs-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(255, 215, 0, 0.8),
                inset 0 2px 5px rgba(255, 255, 255, 0.4);
    background: linear-gradient(145deg, #ffed4e 0%, #ffd700 50%, #ffed4e 100%);
}

.policy-footer {
    margin-top: 40px;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

@media (min-width: 768px) {
    .redirect-text {
        font-size: 20px;
    }
    
    .docs-link {
        padding: 18px 50px;
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .redirect-text {
        font-size: 22px;
    }
    
    .docs-link {
        padding: 20px 60px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        font-size: 12px;
    }
    
    .footer-separator {
        margin: 0 8px;
    }
    
    .redirect-text {
        font-size: 16px;
    }
    
    .docs-link {
        padding: 14px 30px;
        font-size: 16px;
    }
}

