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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    color: #333;
    line-height: 1.6;
}

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

header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    max-width: 300px;  /* Fixed typo from 600px00px */
    height: auto;
}

main {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.7rem;
    color: #2373AE;    /* Changed from #666 to #2373AE */
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.coming-soon {
    background: #007AFF;
    color: white;
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.5rem;
    margin: 2rem 0;
    animation: pulse 2s infinite;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

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

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

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.vision {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 0.96rem;  /* Reduced from 1.2rem by 20% */
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 1rem;
    }
}