:root {
    --primary: #E25C1D;
    --secondary: #0A1128;
    --bg-light: #F7F9FC;
    --bg-white: #FFFFFF;
    --text-main: #2D3748;
    --text-muted: #718096;
    --border: #E2E8F0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 700;
}

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

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.btn-primary:hover {
    background-color: #C84B12;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--secondary);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: background 0.3s, color 0.2s;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.badge {
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 20px;
}

.section-badge {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 48px;
}

.site-header {
    background-color: var(--secondary);
    color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--bg-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bg-white);
    transition: 0.3s;
}

.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    padding: 80px 0;
}

.hero-content {
    max-width: 720px;
}

.hero-content h1 {
    font-size: 56px;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.stats-bar {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 32px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.features-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.editorial-choice {
    padding: 100px 0;
}

.editorial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.view-all-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.editorial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    margin-bottom: 0;
}

.card-body {
    padding: 24px;
}

.card-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.split-cta-section {
    padding: 100px 0;
    background-color: var(--secondary);
    color: var(--bg-white);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

.split-grid.inverse {
    direction: ltr;
}

.cta-text-side h2 {
    color: var(--bg-white);
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-text-side p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.sub-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    display: flex;
    position: relative;
}

.input-group input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    font-size: 14px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    outline: none;
}

.input-group button {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.checkbox-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-wrapper a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.cta-image-side img {
    width: 100%;
    border-radius: var(--radius-md);
    height: 400px;
    object-fit: cover;
}

.mission-section {
    padding: 100px 0;
}

.mission-list {
    list-style: none;
    margin-bottom: 32px;
}

.mission-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 15px;
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.team-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background-color: var(--bg-white);
    padding: 40px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    object-fit: cover;
}

.team-role {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.site-footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    margin: 20px 0;
    line-height: 1.8;
}

.copyright {
    font-size: 12px;
    opacity: 0.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav h4 {
    color: var(--bg-white);
    font-size: 15px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-legal {
    background-color: #050A1A;
    padding: 24px 0;
}

.legal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    font-size: 12px;
    opacity: 0.8;
}

.legal-links a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 480px;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-container h3 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 12px;
}

.cookie-container p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-actions button {
    padding: 10px 18px;
    font-size: 12px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
}

.cookie-actions .btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.cookie-actions .btn-secondary {
    background-color: rgba(255,255,255,0.1);
    color: var(--bg-white);
    border: none;
}

.cookie-actions .btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--bg-white);
}

.cookie-options {
    margin-bottom: 20px;
    background-color: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.cookie-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 8px;
}

.cookie-checkbox:last-child {
    margin-bottom: 0;
}

.inner-hero {
    min-height: 40vh;
    background-color: var(--secondary);
}

.about-story {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-text blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    font-style: italic;
    color: var(--secondary);
    font-size: 18px;
    margin-top: 32px;
}

.story-images-layout img {
    width: 100%;
    border-radius: var(--radius-md);
    height: 480px;
    object-fit: cover;
}

.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 48px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.val-num {
    font-family: var(--font-heading);
    font-size: 48px;
    color: rgba(226, 92, 29, 0.15);
    font-weight: 700;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.services-list {
    padding: 100px 0;
}

.services-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.services-row:last-child {
    margin-bottom: 0;
}

.num-badge {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    display: block;
    margin-bottom: 16px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.service-image img {
    width: 100%;
    border-radius: var(--radius-md);
    height: 400px;
    object-fit: cover;
}

.contact-layout {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-channel {
    margin-top: 24px;
    font-size: 15px;
}

.contact-channel strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
}

.gmap-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.main-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    outline: none;
    font-family: var(--font-body);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
    margin-top: 24px;
}

.error-message-box {
    background-color: #FED7D7;
    color: #9B2C2C;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-top: 16px;
}

.blog-feed-section {
    padding: 80px 0;
}

.filters-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
}

.filter-btn.active {
    background-color: var(--secondary);
    color: var(--bg-white);
    border-color: var(--secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 44px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.article-authorship {
    font-size: 14px;
    color: var(--text-muted);
}

.article-featured-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 48px;
}

.article-featured-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-main);
}

.lead-text {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 32px;
}

.article-content p {
    margin-bottom: 28px;
}

.article-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 24px;
    font-style: italic;
    font-size: 22px;
    margin: 40px 0;
    color: var(--secondary);
}

.article-cta-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
    margin-top: 64px;
    text-align: center;
}

.article-cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.article-cta-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.legal-page-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
}

.legal-page-container h1 {
    font-size: 40px;
    margin-bottom: 8px;
}

.effective-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-page-container h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page-container p, .legal-page-container li {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 16px;
}

.legal-page-container ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 32px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table th, table td {
    border: 1px solid var(--border);
    padding: 12px 16px;
    text-align: left;
}

table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.thankyou-container {
    max-width: 600px;
    margin: 120px auto;
    padding: 0 24px;
    text-align: center;
}

.success-badge {
    margin-bottom: 32px;
}

.thankyou-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.thankyou-container p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

@media(max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .editorial-grid {
        grid-template-columns: 1fr;
    }
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-image-side img {
        height: 300px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }
    .services-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .header-cta {
        width: 100%;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
