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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Header */
header {
    background: white;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2d5f4f;
}

.logo-icon {
    display: block;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #4a9d7e;
}

.cta-button {
    background: #4a9d7e;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #3d8468;
}

/* Hero Section */
.hero {
    background-image: url(./hero-bg.png);
    background-repeat:no-repeat;
    background-size: cover;
    color: white;
    padding: 100px 5% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: white;
    color: #4a9d7e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero .highlight {
    color: #5ec99f;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background: #5ec99f;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.primary-button:hover {
    background: #4ab88a;
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: white;
    color: #1a3a4a;
}

/* Problems Section */
.problems {
    padding: 80px 5%;
    background: white;
}

.problems h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.problems>p {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.problem-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 80px 5%;
    background: #fafafa;
}

.solution-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.solution-content {
    flex: 1;
    min-width: 300px;
}

.solution-label {
    color: #4a9d7e;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.solution-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.solution-content>p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 500;
}

.feature-list li::before {
    content: ' ';
    background-image: url('./CheckCircle.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    background: #f5f5f5;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-section p {
    color: #666;
    margin-bottom: 10px;
}

.cta-section .primary-button {
    margin-top: 30px;
}

.cta-note {
    color: #999;
    font-size: 14px;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #0a1f2e;
    color: white;
    padding: 40px 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 36px;
    height: 36px;
    background: white   ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
}

.social-links img:hover {
    background: rgba(255, 255, 255, 0.277);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

