/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #4CD964;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

nav {
    display: flex;
    gap: 30px;
}

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

nav a:hover {
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
/*    background: linear-gradient(135deg, #89cc89 0%, #a8dba8 50%, #c8ebc8 100%); */
	background: linear-gradient(135deg, #61dd76 0%, #61dd76cc 100%);
	
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.tagline {
    font-size: 1.3rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 60px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    padding: 30px;
    border-radius: 12px;
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 217, 100, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #4CD964 0%, #3DB854 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Form */
form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

button {
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.hidden {
    display: none;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CD964;
}

/* Content Pages */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.content-page p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.content-page ul {
    margin: 15px 0 15px 30px;
    color: #666;
}

.content-page li {
    margin-bottom: 10px;
}

.content-page a {
    color: #4CD964;
    text-decoration: none;
}

.content-page a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    input[type="email"],
    button {
        width: 100%;
    }
    
    nav {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 55px;
    }
    
    footer .container {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}