:root {
    --oxford-blue: #003087;
    --oxford-green-accent: #0d6b3d;
    --neutral-dark: #1a1a1a;
    --neutral-light: #f5f5f5;
    --neutral-white: #ffffff;
    --accent-text: #003087;
}

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

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-size: 1.04rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--neutral-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    color: var(--neutral-dark);
    font-weight: 700;
    letter-spacing: 0.3px;
}

h1 {
    font-size: 2.68rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.08rem;
    margin-bottom: 1.3rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.54rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

a {
    color: var(--accent-text);
    text-decoration: none;
    transition: opacity 0.34s ease;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.navbar-custom {
    background-color: var(--neutral-white);
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    z-index: 1000;
}

.brand-text {
    font-family: 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oxford-blue);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--neutral-dark) !important;
    font-size: 1rem;
    margin-left: 1.5rem;
    transition: color 0.34s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--oxford-blue) !important;
}

.hero-section {
    background-color: var(--neutral-white);
    padding: 4rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.hero-title {
    color: var(--oxford-blue);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--oxford-green-accent);
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
}

.hero-description {
    font-size: 1.04rem;
    color: var(--neutral-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-image {
    max-height: 400px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.content-section {
    padding: 3rem 0;
}

.content-section.bg-light {
    background-color: var(--neutral-light);
}

.content-image {
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    margin: 1rem 0;
    max-height: 350px;
    object-fit: cover;
    width: 100%;
}

.article-card {
    background-color: var(--neutral-white);
    padding: 1.5rem;
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.34s ease, box-shadow 0.34s ease;
    border-left: 4px solid var(--oxford-blue);
    margin-bottom: 1.5rem;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.article-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.article-card p {
    font-size: 0.95rem;
    color: #666;
}

.read-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--oxford-blue);
    font-weight: 600;
    text-decoration: none;
}

.read-link:hover {
    text-decoration: underline;
}

.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--neutral-white);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 7px;
    border-left: 4px solid var(--oxford-blue);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
    color: var(--oxford-blue);
    margin-bottom: 0.8rem;
}

.btn-explore {
    background-color: var(--oxford-blue);
    color: var(--neutral-white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 7px;
    transition: all 0.34s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-explore:hover {
    background-color: var(--oxford-green-accent);
    color: var(--neutral-white);
    text-decoration: none;
}

.footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer h3 {
    color: var(--oxford-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: var(--neutral-white);
    text-decoration: none;
    transition: color 0.34s ease;
}

.footer-links a:hover {
    color: var(--oxford-blue);
}

.footer-notice {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
}

.footer-divider {
    border-top: 1px solid #444;
    margin: 1.5rem 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--neutral-dark);
    color: var(--neutral-white);
    padding: 1.5rem 0;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-banner .btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.form-group label {
    color: var(--neutral-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 0.7rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--oxford-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 48, 135, 0.25);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.contact-info h3 {
    margin-top: 0;
}

.policy-section {
    background-color: var(--neutral-white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.policy-section h2 {
    color: var(--oxford-blue);
}

.policy-section h3 {
    margin-top: 1.5rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.disclaimer-box {
    background-color: #fff9e6;
    border-left: 4px solid var(--oxford-blue);
    padding: 1.5rem;
    border-radius: 7px;
    margin: 1.5rem 0;
}

.disclaimer-box h3 {
    color: var(--oxford-blue);
    margin-top: 0;
}

.breadcrumb-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.breadcrumb-link a {
    color: var(--oxford-blue);
    text-decoration: none;
}

.breadcrumb-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-image {
        margin-top: 1.5rem;
    }

    .content-section {
        padding: 2rem 0;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .article-card {
        margin-bottom: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    h3 {
        font-size: 1rem;
    }

    .navbar-custom {
        padding: 0.5rem 0;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .content-image {
        max-height: 250px;
    }

    .footer {
        text-align: center;
    }

    .footer-address {
        font-size: 0.85rem;
    }
}
