@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

:root {
    --lime-green: #C4F45D;
    --light-blue: #B2E4EF;
    --text-dark: #1a1a1a;
    --text-gray: #666;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: black;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Layout */
main, .header-container, .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.btn-cta {
    background-color: #71C7DE;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 60px 0;
}

.hero-image-container {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}


/* Mission */
#mission {
    text-align: center;
    padding: 80px 0;
}

.full-width-img {
    width: 100%;
    height: auto;
    margin-top: 40px;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.item span {
    font-weight: bold;
    margin-right: 15px;
}

.btn-secondary {
    background-color: var(--light-blue);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 30px;
    cursor: pointer;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.feature-card h4 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Footer */
footer {
    background-color: #fafafa;
    padding: 80px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 10px 0;
}