/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}

body {
background: #f5f5f5;
color: #1f2d2b;
line-height: 1.6;
}

/* CONTAINER */
.container {
width: 90%;
max-width: 1100px;
margin: auto;
}

/* NAVBAR */
.navbar {
background: #0f3d35;
padding: 10px 0;
}

.nav-flex {
display: flex;
justify-content: space-between;
align-items: center;
}

/* LOGO FIX */
.logo {
height: 35px;
width: auto;
object-fit: contain;
}

/* NAV LINKS */
nav a {
color: white;
margin-left: 15px;
text-decoration: none;
font-size: 0.9rem;
}

nav a:hover {
text-decoration: underline;
}

/* HERO */
.hero {
background: white;
text-align: center;
padding: 60px 20px;
}

.hero h1 {
font-size: 2rem;
line-height: 1.3;
margin-bottom: 15px;
}

.hero p {
font-size: 0.95rem;
margin-bottom: 20px;
color: #555;
}

/* BUTTON */
.btn {
display: inline-block;
padding: 10px 20px;
background: linear-gradient(to right, #1e6f5c, #3bb273);
color: white;
text-decoration: none;
border-radius: 5px;
}

/* SERVICES */
.services {
padding: 50px 20px;
}

.services h2 {
text-align: center;
margin-bottom: 30px;
}

.grid {
display: grid;
gap: 20px;
}

/* CARD */
.card {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card i {
font-size: 22px;
margin-bottom: 10px;
color: #1e6f5c;
}

/* FOOTER */
footer {
text-align: center;
padding: 20px;
background: #0f3d35;
color: white;
}

/* 🔥 BREAKPOINT 1: 480px */
@media (min-width: 480px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
}

/* 🔥 BREAKPOINT 2: 768px */
@media (min-width: 768px) {

.grid {
grid-template-columns: repeat(3, 1fr);
}

.hero h1 {
font-size: 2.5rem;
}

nav a {
font-size: 1rem;
}
}