/* CONTAINERS */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #37474F;
    background: #FAFAFA;
}

.container {
    width: 90%;
    max-width: 1050px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 16px 0;
    border-bottom: 1px solid #E0E0E0;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 34px;
    margin-right: 10px;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-right {
    margin-left: auto;
    display: flex;
    gap: 28px;
}

.nav-right a {
    text-decoration: none;
    color: #37474F;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-right a:hover {
    opacity: 0.6;
}

/* HERO */
.hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at top left, #E8F5E9 0%, #B2DFDB 40%, #FAFAFA 85%);
    overflow: hidden;
}

.hero.small-hero {
    padding: 80px 0;
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #A5D6A7 0%, #80CBC4 40%, transparent 70%);
    top: -120px;
    left: -80px;
    opacity: 0.35;
    filter: blur(2px);
}

.hero-bg-logo {
    position: absolute;
    width: 420px;
    opacity: 0.08;
    top: -40px;
    right: -60px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #455A64;
    margin-bottom: 24px;
}

/* BUTTON */
.btn.primary {
    display: inline-block;
    padding: 12px 28px;
    background: #4DB6AC;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn.primary:hover {
    background: #26A69A;
}

/* WAVE DIVIDER */
.wave-divider {
    position: relative;
    margin-top: -40px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section.alt {
    background: linear-gradient(180deg, #F1F8F6 0%, #ECEFF1 100%);
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 2rem;
    position: relative;
    margin-bottom: 20px;
}

.section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #80CBC4, #A5D6A7);
    margin: 10px auto 24px;
}

/* CARDS */
.cards {
    display: grid;
    gap: 24px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid rgba(0, 150, 136, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    border-color: rgba(0,150,136,0.40);
}

/* SERVICE BLOCKS */
.service-block {
    background: white;
    padding: 32px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.service-block ul {
    padding-left: 20px;
}

/* FOOTER */
.footer {
    padding: 40px 0;
    background: #F5F5F5;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #37474F;
}