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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 8rem;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 80px 20px 40px;
}

.content {
    text-align: center;
    color: #2c3e50;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}





.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Ask Bizly Button */
.ask-bizly-btn {
    margin-right: 6rem;
}

.bizly-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
    transition: all 0.3s ease;
    min-width: 140px;
}

.bizly-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
    background: linear-gradient(135deg, #689F38, #7CB342);
}

.bizly-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.bizly-subtitle {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.1;
}

.hero-section {
    margin-bottom: 3rem;
}

.product-showcase {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 400px;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.feature i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
}

.notify-section {
    margin-bottom: 3rem;
}

.notify-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-form input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    min-width: 300px;
    background: #ffffff;
    color: #2c3e50;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.email-form input::placeholder {
    color: rgba(44, 62, 80, 0.6);
}

.email-form input:focus {
    outline: none;
    background: #ffffff;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.email-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Section Divider */
.section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #f1c232, #f39c12);
    margin: 4rem auto 3rem;
    border-radius: 1px;
}

/* Knowledge Hub */
.knowledge-hub {
    margin-top: 0;
    text-align: center;
}

.knowledge-hub h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.knowledge-hub p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.article-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #f1c232;
    box-shadow: 0 10px 25px rgba(241, 194, 50, 0.15);
}

.article-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.article-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}







@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(44, 62, 80, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(44, 62, 80, 0.5);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 80px 15px 30px;
        align-items: flex-start;
        padding-top: 100px;
    }
    
    .content {
        padding: 1rem;
        width: 100%;
    }
    
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        margin-left: 3rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .product-image {
        max-width: 300px;
        max-height: 250px;
    }
    
    .features {
        gap: 2rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-form input {
        min-width: 280px;
        margin-bottom: 1rem;
    }
    
    .knowledge-hub h4 {
        font-size: 1.5rem;
    }
    
    .articles-grid {
        gap: 0.75rem;
    }
    
    .article-card {
        padding: 1.25rem;
    }
    
    /* Ask Bizly responsive */
    .ask-bizly-btn {
        margin-right: 2rem;
    }
    
    .bizly-link {
        padding: 10px 16px;
        min-width: 120px;
    }
    
    .bizly-text {
        font-size: 16px;
    }
    
    .bizly-subtitle {
        font-size: 10px;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 90px 10px 30px;
        padding-top: 110px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .email-form input {
        min-width: 250px;
    }
    
    .product-image {
        max-width: 250px;
        max-height: 200px;
    }
    
    .knowledge-hub h4 {
        font-size: 1.3rem;
    }
    
    .article-card {
        padding: 1rem;
    }
    
    .article-card h5 {
        font-size: 1.1rem;
    }
    
    /* Ask Bizly mobile */
    .ask-bizly-btn {
        margin-right: 0.5rem;
    }
    
    .bizly-link {
        padding: 8px 12px;
        min-width: 100px;
    }
    
    .bizly-text {
        font-size: 14px;
    }
    
    .bizly-subtitle {
        font-size: 9px;
    }
} 