:root {
    --primary: #2eb872;
    --primary-dark: #24965d;
    --white: #ffffff;
    --text-dark: #1f2937;
    --bg-body: #fdfdfd;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo span {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.section-padding {
    padding: 5rem 0;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.85), rgba(31, 41, 55, 0.7)), url('../assets/hero-bg.png');
    background-size: cover;
    color: white;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.footer {
    background: #f9fafb;
    padding: 4rem 0;
    margin-top: auto;
}

/* Service Card Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price-tag {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}