/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Newsreader", serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1510;
    letter-spacing: 0.2px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1510 0%, #3e2a1a 50%, #654321 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.logo h1 {
    font-size: 3.5rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.logo .tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Navigation */
nav {
    background: linear-gradient(90deg, rgba(26, 21, 16, 0.95) 0%, rgba(62, 42, 26, 0.95) 50%, rgba(26, 21, 16, 0.95) 100%);
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #8B4513;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #e8d4b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

nav a:hover,
nav a.active {
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    border-color: #654321;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    transform: translate(-1px, -1px);
    color: white;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(62, 42, 26, 0.6) 0%, rgba(26, 21, 16, 0.8) 100%);
    border-radius: 0;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4), 0 0 30px rgba(210, 105, 30, 0.1);
    border: 2px solid #8B4513;
}

.policy-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #D2691E;
}

.policy-header h2 {
    color: #e8d4b8;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.policy-header .last-updated {
    color: #c4b5a0;
    font-style: italic;
    font-size: 0.9rem;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    color: #D2691E;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    padding-left: 0.8rem;
    border-left: 5px solid #8B4513;
    letter-spacing: 1px;
}

.policy-section h4 {
    color: #c4b5a0;
    font-size: 1.2rem;
    margin: 0.8rem 0 0.5rem 0;
}

.policy-section p {
    margin-bottom: 0.8rem;
    text-align: justify;
    color: #c4b5a0;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.policy-section ul,
.policy-section ol {
    margin: 0.8rem 0 0.8rem 1.5rem;
    color: #c4b5a0;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(139, 69, 19, 0.15) 100%);
    border-left: 5px solid #e74c3c;
    padding: 1rem;
    margin: 1.2rem 0;
    border-radius: 0;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.highlight-box p {
    margin-bottom: 0;
    color: #e8d4b8;
}

/* Contact Information */
.contact-info {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(62, 42, 26, 0.5) 100%);
    border: 2px solid #D2691E;
    padding: 1.5rem;
    border-radius: 0;
    margin-top: 1.5rem;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    color: #e8d4b8;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    letter-spacing: 0.8px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #c4b5a0;
}

.contact-info a {
    color: #D2691E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #CD853F;
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #3e2a1a 0%, #1a1510 100%);
    color: white;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 3px solid #8B4513;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    margin-bottom: 1rem;
    color: #c4b5a0;
    letter-spacing: 0.5px;
}

.footer-content p a {
    color: #c4b5a0;
    text-decoration: none;
}

.footer-content p a:hover {
    color: #e8d4b8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #D2691E;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border: 2px solid transparent;
}

.footer-links a:hover {
    color: #CD853F;
    border-color: #D2691E;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    main {
        padding: 1rem;
        margin: 1rem;
    }

    .policy-header h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }
}
