:root {
    --primary-color: #0e3c3c;
    /* Dark Teal */
    --primary-dark: #072525;
    --secondary-color: #c5a059;
    /* Gold */
    --accent-color: #a3c1ad;
    /* Sage Green */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --section-padding: 100px 0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    color: var(--text-light);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    filter: brightness(110%);
}

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

.btn-accent:hover {
    background-color: #bfe0ca;
}

.btn-block {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.announcement-bar a {
    text-decoration: underline;
    font-weight: 700;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo span {
    color: var(--secondary-color);
}

header nav ul {
    display: flex;
    gap: 30px;
}

header nav a {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
}

header nav a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    padding: 80px 0 120px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-small {
    padding: 100px 0 80px;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
}

.hero-small h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-small .lead {
    font-size: 1.25rem;
    max-width: 700px;
    opacity: 0.9;
}

/* Hero with Image Overlay */
.hero-with-image {
    position: relative;
    padding: 140px 0;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Default dark primary for fallback */
    background-color: var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 60, 60, 0.95) 0%, rgba(14, 60, 60, 0.7) 50%, rgba(14, 60, 60, 0.3) 100%);
    z-index: 1;
}

.hero-with-image .container {
    position: relative;
    z-index: 2;
}

.hero-with-image h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-with-image .lead {
    font-size: 1.3rem;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sub-page Sections */
.section-light {
    background-color: var(--bg-white);
    padding: var(--section-padding);
}

.section-alt {
    background-color: var(--bg-light);
    padding: var(--section-padding);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--section-padding);
}

.limit-width {
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
}

.process-list {
    counter-reset: process-counter;
    /* Initialize counter */
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.process-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.process-list li::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
}

.process-list h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Content Blocks */
.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-block ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-block ul li {
    margin-bottom: 10px;
}

/* Text Highlights */
.text-gold {
    color: var(--secondary-color);
}


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

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.highlight {
    color: var(--secondary-color);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.trustpilot-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.trustpilot-link i {
    color: #00b67a;
    /* Trustpilot green */
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

/* Abstract visual elements */
.visual-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 101, 0.2) 0%, rgba(14, 60, 60, 0) 70%);
    border-radius: 50%;
    top: 0;
    right: 0;
}

.visual-card {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.visual-card i {
    font-size: 2rem;
    color: var(--secondary-color);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Brief About */
.brief-about {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.brief-about .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brief-about h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(14, 60, 60, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .card-link {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* Theme specifics for cards */
.theme-light-green {
    background-color: #e8f3ee;
}

.theme-gold {
    background-color: #f7f3ea;
}

/* Trusted Partner / Stats */
.trusted-partner {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.partner-text p.lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.partner-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-card .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

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

/* Testimonial Section */
.testimonial-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: var(--text-light);
}

.testimonial-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-content h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testimonial-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.video-placeholder {
    width: 100%;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 0 0 10px rgba(197, 160, 101, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.phone-large {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.help-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-list i {
    color: var(--accent-color);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

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

/* Footer */
footer {
    background-color: #072525;
    color: #ccc;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
    margin-bottom: 30px;
}

.logo-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.link-group h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .partner-grid,
    .testimonial-section .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .partner-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .partner-stats {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 40px;
        flex-direction: column;
    }
}