/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #061417;
    --color-secondary: #012C3C;
    --color-accent: #285669;
    --color-text: #ffffff;
    --color-text-light: #e0e0e0;
    --color-bg-light: #f5f5f5;
    --spacing-unit: 1rem;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-primary);
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--color-secondary);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.tagline {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: bold;
}

/* Navigation Styles */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.3rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    background-color: var(--color-secondary);
    padding: 1rem 0;
    border-top: 1px solid var(--color-accent);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(40, 86, 105, 0.3);
}

.mobile-nav a {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    padding: 1rem 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
    background-color: var(--color-accent);
}

/* Banner Styles */
.banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #666;
    display: block;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6, 20, 23, 0.95), transparent);
    padding: 3rem 2rem 2rem;
    color: var(--color-text);
}

.banner-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.banner-overlay p {
    font-size: 1.3rem;
    font-weight: bold;
}

/* F-Shape Layout - Main Content */
.main-content {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Primary Content - Left Column (F-shape reading pattern) */
.primary-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.featured-article,
.secondary-article {
    background-color: var(--color-secondary);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.featured-article h2,
.secondary-article h3 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
}

.secondary-article h3 {
    font-size: 1.6rem;
}

.featured-article p,
.secondary-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    font-weight: bold;
}

.article-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 2rem 0;
    border-radius: 6px;
    background-color: #666;
    display: block;
}

/* Sidebar - Right Column */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--color-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sidebar-widget h3 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-light);
    font-weight: bold;
}

.service-list a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.service-list a:hover {
    color: var(--color-accent);
}

.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.contact-info {
    color: var(--color-text-light);
    font-weight: bold;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.sidebar-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #666;
    display: block;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: var(--color-secondary);
}

.map-section h2 {
    text-align: center;
    color: var(--color-accent);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-section p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(40, 86, 105, 0.3);
    color: var(--color-text-light);
    font-weight: bold;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .banner {
        height: 300px;
    }

    .banner-overlay h2 {
        font-size: 1.8rem;
    }

    .banner-overlay p {
        font-size: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
    }

    .featured-article,
    .secondary-article {
        padding: 1.5rem;
    }

    .featured-article h2 {
        font-size: 1.5rem;
    }

    .article-image {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-article h2 {
        font-size: 1.3rem;
    }

    .policy-article h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .banner {
        height: 250px;
    }

    .banner-overlay {
        padding: 2rem 1rem 1rem;
    }

    .banner-overlay h2 {
        font-size: 1.4rem;
    }

    .banner-overlay p {
        font-size: 0.9rem;
    }

    .featured-article,
    .secondary-article,
    .sidebar-widget {
        padding: 1rem;
    }

    .featured-article h2 {
        font-size: 1.3rem;
    }

    .secondary-article h3 {
        font-size: 1.2rem;
    }

    .featured-article p,
    .secondary-article p {
        font-size: 1rem;
    }

    .article-image {
        height: 200px;
        margin: 1rem 0;
    }

    .sidebar-image {
        height: 200px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Image Placeholder Styles */
img {
    background-color: #666;
    background-image: linear-gradient(45deg, #555 25%, transparent 25%), 
                      linear-gradient(-45deg, #555 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #555 75%), 
                      linear-gradient(-45deg, transparent 75%, #555 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Header Contact Styles */
.header-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-right: 2rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    stroke-width: 2;
}

.header-contact-item a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.header-contact-item a:hover {
    color: var(--color-accent);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.contact-intro {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: bold;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-detail-item h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-detail-item p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: bold;
}

.contact-detail-item a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-section {
    background-color: var(--color-secondary);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--color-accent);
    border-radius: 6px;
    background-color: var(--color-primary);
    color: var(--color-text);
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-text);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--color-text);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Success Page Styles */
.success-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-secondary);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-accent);
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-content h1 {
    color: var(--color-accent);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.success-message {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
}

.success-details {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.btn-primary:hover {
    background-color: var(--color-text);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-text);
}

/* Policy Pages Styles */
.policy-section {
    padding: 4rem 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-secondary);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.policy-content h1 {
    color: var(--color-accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.last-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
    font-style: italic;
}

.policy-article {
    margin-bottom: 2.5rem;
}

.policy-article h2 {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.policy-article h3 {
    color: var(--color-accent);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.policy-article p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: bold;
}

.policy-article ul {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.policy-article li {
    margin-bottom: 0.5rem;
}

.policy-article a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: bold;
}

.policy-article a:hover {
    text-decoration: underline;
}

.policy-article strong {
    color: var(--color-text);
    font-weight: bold;
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-article h2 {
        font-size: 1.5rem;
    }

    .policy-article h3 {
        font-size: 1.2rem;
    }

    .policy-article p,
    .policy-article ul {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-article h2 {
        font-size: 1.3rem;
    }

    .policy-article h3 {
        font-size: 1.1rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--color-accent);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
    color: var(--color-text-light);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-banner-text p {
    margin: 0;
}

.cookie-banner-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--color-text);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-cookie-accept {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.btn-cookie-accept:hover {
    background-color: var(--color-text);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.btn-cookie-decline:hover {
    background-color: var(--color-text-light);
    color: var(--color-secondary);
}

.btn-cookie-learn {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    text-decoration: none;
    display: inline-block;
}

.btn-cookie-learn:hover {
    background-color: var(--color-accent);
    color: var(--color-text);
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text {
        font-size: 0.9rem;
    }

    .btn-cookie {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .success-content {
        padding: 2rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .contact-form-section {
        padding: 1rem;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
    }

    .success-content {
        padding: 1.5rem;
    }

    .success-content h1 {
        font-size: 1.8rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }
}

