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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #f1f1f1;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    padding: 1rem 0;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f1f1;
}

.logo span {
    color: #4cc9f0;
}

/* Main Content Styles */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.content {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4cc9f0, #f72585);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #b8c1ec;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #c8d8eb;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: rgba(29, 38, 59, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(76, 201, 240, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(76, 201, 240, 0.5);
}

.feature i {
    font-size: 2.5rem;
    color: #4cc9f0;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #f1f1f1;
}

.feature p {
    font-size: 0.9rem;
    color: #b8c1ec;
    margin-bottom: 0;
}

/* Target Audience Styles */
.target-audience {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f72585;
    background: rgba(29, 38, 59, 0.6);
    border-radius: 10px;
    padding: 1rem 2rem;
    margin: 0 auto 2rem;
    border: 1px solid rgba(247, 37, 133, 0.3);
    max-width: 800px;
    text-align: center;
}



/* Subscribe Form Styles */
.subscribe {
    margin: 3rem 0;
    display: none; /* Hidden as requested */
}

.subscribe h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #b8c1ec;
}

#subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

#subscribe-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: background 0.3s ease;
}

#subscribe-form input:focus {
    background: rgba(255, 255, 255, 0.15);
}

#subscribe-form input::placeholder {
    color: #b8c1ec;
}

#subscribe-form button {
    padding: 1rem 1.5rem;
    background: #4cc9f0;
    color: #1a1a2e;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

#subscribe-form button:hover {
    background: #7bdff2;
    transform: translateY(-2px);
}

.success-message {
    display: none;
    color: #4cc9f0;
    margin-top: 1rem;
    font-weight: 500;
}

/* Footer Styles */
footer {
    padding: 2rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: #b8c1ec;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #f72585;
    transform: translateY(-3px);
}

footer p {
    color: #b8c1ec;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature {
        min-width: 100%;
    }
    

    
    #subscribe-form {
        flex-direction: column;
    }
    
    #subscribe-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    

}