:root {
    --primary-color: #1C7A7B;
    --secondary-color: #80C342;
    --accent-color: #249A89;
    --dark-color: #0C4C4C;
    --text-color: #333333;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --font-main: 'Jost', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #249A89; /* Lighter teal for dark mode */
        --secondary-color: #80C342;
        --accent-color: #1C7A7B;
        --dark-color: #083333;
        --text-color: #e0e0e0;
        --light-bg: #121212;
        --white: #1e1e1e; /* Dark grey for backgrounds */
        --card-bg: #2d2d2d;
        --header-bg: #1e1e1e;
    }
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 180px;
    width: auto;
}

.header-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 20px;
}

.header-map {
    height: 135px;
    width: auto;
    margin-bottom: 8px;
}

.header-location p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 250px;
    line-height: 1.2;
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: var(--font-main);
}

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

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

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

.btn-secondary:hover {
    background-color: #6ba336;
}

.btn-large {
    font-size: 1.2rem;
    padding: 16px 32px;
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color);
}

.feature-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style-type: none;
    margin-top: 1.5rem;
}

.feature-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Promise Section */
.promise {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.promise h2 {
    color: var(--white);
}

.promise .large-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.cta-section h2 {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    header {
        position: static;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        height: 120px;
    }

    .header-map {
        height: 90px;
    }

    .header-right-group {
        flex-direction: column;
        gap: 15px;
    }
}
