:root {
    --bg-dark: #302B37;
    --bg-dark-light: #3D3745;
    --text-white: #FFFFFF;
    --text-muted: #8E8597;
    --gold: #D9B382;
    --gold-hover: #C59F70;
    --light-grey: #F6F4F7;
    --border-grey: #E5E0E7;
    --body-text: #45414C;
    --body-text-dark: #1E1A23;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-heavy: 0 15px 35px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--body-text);
    background-color: var(--text-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--body-text-dark);
    font-weight: 600;
}

h1, h2 {
    font-family: var(--font-serif);
}

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

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

.max-w-lg {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-md {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-sm {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

.bg-light {
    background-color: var(--light-grey);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--text-white);
}

.text-white {
    color: #fff !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.text-small {
    font-size: 14px;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 48px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 48px;
}

.w-full {
    width: 100%;
}

.rounded {
    border-radius: var(--radius-md);
}

.shadow {
    box-shadow: var(--shadow-soft);
}

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

.section-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
}

.btn-secondary {
    background-color: var(--bg-dark-light);
    color: var(--text-white);
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--border-grey);
    color: inherit;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 15px;
}

.header {
    background-color: var(--text-white);
    border-bottom: 1px solid var(--border-grey);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--body-text-dark);
}

.logo svg {
    flex-shrink: 0;
}

.logo span {
    margin-top: 2px;
}

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

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-text);
    position: relative;
}

.nav a:hover, .nav a.active {
    color: var(--gold);
}

.burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--body-text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30,26,35,0.95), rgba(30,26,35,0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 24px;
}

.hero-content .lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 36px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

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

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

.gap-2 {
    gap: 24px;
}

.gap-3 {
    gap: 48px;
}

.align-center {
    align-items: center;
}

.card {
    background-color: var(--bg-dark-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-white);
}

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

.highlights-list {
    list-style: none;
}

.highlights-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-grey);
    padding-bottom: 16px;
}

.highlights-list li strong {
    display: block;
    font-size: 16px;
    color: var(--body-text-dark);
    margin-bottom: 4px;
}

.highlights-list li span {
    font-size: 14px;
    color: var(--body-text);
}

.segment-boxes .segment-box {
    background-color: var(--text-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.segment-num {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.segment-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.segment-box p {
    font-size: 14px;
}

.pricing-card {
    background-color: var(--bg-dark-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.featured-pricing {
    border-color: var(--gold);
    box-shadow: var(--shadow-heavy);
    transform: scale(1.03);
}

.pricing-header {
    padding: 40px 32px 30px 32px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-header .price {
    font-size: 48px;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pricing-header .price sup {
    font-size: 16px;
    top: -18px;
    margin-right: 4px;
    color: var(--gold);
}

.pricing-header .price span {
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--text-muted);
}

.pricing-header h3 {
    font-size: 20px;
    color: var(--gold);
}

.pricing-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-body p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: "✔️ ";
    font-size: 11px;
    color: var(--gold);
}

.faq-accordion {
    margin-top: 32px;
}

.faq-item {
    border-bottom: 1px solid var(--border-grey);
    padding: 20px 0;
}

.faq-trigger {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--body-text-dark);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
}

.faq-trigger .icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-trigger .icon::before, .faq-trigger .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--body-text-dark);
    transition: transform 0.3s ease;
}

.faq-trigger .icon::before {
    width: 12px;
    height: 2px;
    margin-left: -6px;
    margin-top: -1px;
}

.faq-trigger .icon::after {
    width: 2px;
    height: 12px;
    margin-left: -1px;
    margin-top: -6px;
}

.faq-item.active .faq-trigger .icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-content {
    max-height: 250px;
    padding-top: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-control {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-grey);
    background-color: var(--text-white);
    color: var(--body-text-dark);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.bg-dark .form-control {
    background-color: var(--bg-dark-light);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    font-size: 13px;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
}

.checkbox-label a {
    text-decoration: underline;
}

.contact-grid-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 48px;
}

.info-item h4 {
    font-size: 14px;
    color: var(--gold);
    margin: 12px 0 6px 0;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.info-icon {
    color: var(--text-white);
}

.footer {
    background-color: var(--bg-dark-light);
    color: var(--text-white);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 40px 0;
}

.footer h1, .footer h2, .footer h3, .footer h4 {
    color: var(--text-white);
}

.footer-grid-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand-section {
    max-width: 360px;
}

.font-large {
    font-size: 24px;
}

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

.footer-links-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--gold);
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links-column ul li a:hover {
    color: var(--text-white);
}

.footer-bottom-meta {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    color: var(--text-muted);
    font-size: 13px;
}

.consent-banner-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 520px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    box-shadow: var(--shadow-heavy);
    border-radius: var(--radius-md);
    padding: 30px;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.1);
}

.consent-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consent-text h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: var(--font-sans);
}

.consent-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.consent-preferences {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
}

.consent-preferences label {
    font-size: 12px;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consent-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.inner-hero {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0;
    text-align: center;
}

.inner-hero h1 {
    color: var(--text-white);
    font-size: 48px;
    margin-bottom: 16px;
}

.inner-hero p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail-card {
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

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

.icon-holder {
    color: var(--gold);
    margin-bottom: 24px;
}

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

.service-detail-card p {
    font-size: 14px;
}

.article-card {
    background-color: var(--light-grey);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-card .card-body h3 {
    color: var(--body-text-dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.meta-date {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.article-hero {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-post {
    line-height: 1.8;
}

.article-body h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    font-style: italic;
    color: var(--body-text-dark);
    margin: 32px 0;
}

.cta-embedded {
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: var(--radius-md);
}

.cta-embedded h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.cta-embedded p {
    margin-bottom: 24px;
    font-size: 15px;
}

.legal-doc-section p, .legal-doc-section ul {
    margin-bottom: 24px;
}

.legal-doc-section ul {
    padding-left: 24px;
}

.legal-doc-section h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.legal-table th, .legal-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-grey);
    font-size: 14px;
}

.legal-table th {
    background-color: var(--light-grey);
    font-weight: 600;
    color: var(--body-text-dark);
}

.min-vh-60 {
    min-height: 60vh;
}

.badge-success-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.contact-details-box {
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: var(--radius-md);
}

.contact-mini-icon {
    margin-right: 12px;
    font-size: 18px;
}

.d-flex {
    display: flex;
}

.map-section iframe {
    display: block;
}

@media(max-width: 991px) {
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-2, .grid-3, .grid-4 {
        gap: 32px;
    }
    
    .contact-grid-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .burger {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--text-white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border-grey);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        opacity: 0;
    }
    
    .nav.nav-open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .featured-pricing {
        transform: none;
    }
}

@media(max-width: 575px) {
    .contact-grid-info {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .consent-banner-fixed {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 20px;
    }
    
    .consent-buttons {
        flex-direction: column;
    }
}