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

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

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

/* Header/Hero Section */
.hero {
    background-color: #4CAF50; /* Primary green color */
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.coming-soon {
    font-size: 1.2rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: white;
    color: #4CAF50;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}



/* New styles for coming soon page */
.badge {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: 10px;
    font-weight: 500;
}

.instagram-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px 20px;
    margin: 30px 0;
    text-align: center;
}

.instagram-placeholder p {
    margin-bottom: 15px;
    color: #666;
}

.instagram-placeholder ul {
    text-align: left;
    display: inline-block;
    color: #666;
    line-height: 1.8;
}

.instagram-placeholder li {
    margin-bottom: 8px;
}

.small-text {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Instagram Section */
.instagram-section {
    background-color: #f9f9f9;
    text-align: center;
    padding: 60px 20px;
}

.instagram-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.instagram-section p {
    margin-bottom: 30px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    background-color: #4CAF50;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.instagram-link:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.instagram-link:active {
    transform: translateY(-1px);
}

.instagram-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .signup h2 {
        font-size: 2rem;
    }
}