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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container-nik {
    width:99% !important;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #f2ab1d;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ff5252;
}

/* Main Content */
.main-content {
    /*padding: 4rem 0;*/
}

.section {
    margin-bottom: 8px;
    /*background: white;*/
    /*padding: 2rem;*/
    border-radius: 10px;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
}

.section h2 {
    color: #02b2ed;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #f2ab1d;
    padding-bottom: 0.5rem;
}

.section h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

/* Content with Images */
.content-with-image {
    display: flex;
    /*align-items: center;*/
    gap: 3rem;
    margin: 3rem 0;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.content-text {
    /*flex: 0.9;*/
}

.content-image {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #f2ab1d;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card h4 {
    color: #02b2ed;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.module-card {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    border: 1px solid #f2ab1d;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.module-card h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Benefits Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f2ab1d;
}

.benefit-item h4 {
    color: #f2ab1d;
    margin-bottom: 0.5rem;
}

/* Success Stories */
.success-stories {
    /*background: #f1f8ff;*/
    /*padding: 2rem;*/
    border-radius: 10px;
    margin: 2rem 0;
}

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

.success-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.success-card h4 {
    color: #02b2ed;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-item {
    background: #f9f9f9;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #02b2ed;
    color: white;
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
}

.faq-answer {
    padding: 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Contact Section */
.contact-section {
    border: 1px solid #02b2ed;
    /*color: white;*/
    padding: 4rem 0;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    border: 2px solid #02b2ed;
    padding: 20px;
    margin: 2rem auto;
    border-radius:10px;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group input,
.form-group textarea {
    border: 1px solid #ccc !important; 
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #f2ab1d;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #02B2ED !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .content-with-image,
    .content-with-image.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .content-image {
        width:100% !important;
        flex: none;
        height: 100% !important;
    }
}