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

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    background-color: #1e3a8a;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    background: #1e3a8a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-translation {
    font-size: 18px;
    margin: 15px 0 20px 0;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 24px;
    margin: 10px 0;
    color: #e0e0e0;
}

/* Traders Section */
.traders-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #1e3a8a;
    font-weight: 600;
}

.section-subtitle {
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-weight: 500;
}

.traders-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.traders-image {
    max-width: 100%;
    width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Main Features */
.main-features {
    padding: 60px 0;
    background-color: #fff;
}

.feature-box {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 20px 0;
    border-left: 5px solid #1e3a8a;
    border-radius: 5px;
}

.feature-box h3 {
    font-size: 20px;
    color: #1e3a8a;
    line-height: 1.6;
}

/* Learn Section */
.learn-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.learn-image-wrapper {
    text-align: center;
    margin: 30px 0 40px 0;
}

.learn-image {
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.learn-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.learn-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.learn-item h4 {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Testimonial */
.testimonial {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 18px;
    font-weight: bold;
    color: #1e3a8a;
    margin-top: 20px;
    text-align: right;
}

/* Questions Section */
.questions-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.questions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.question-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid #1e3a8a;
}

.question-item h4 {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Modules Section */
.modules-section {
    padding: 60px 0;
    background-color: #fff;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.module-item h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 10px;
}

.module-item ul {
    list-style: none;
    padding-left: 0;
}

.module-item ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.module-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
    font-size: 20px;
}

/* Purchase Section */
.purchase-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: #fff;
    text-align: center;
}

.purchase-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.purchase-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.price-box {
    margin: 30px 0;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
}

.purchase-description {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.purchase-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.payment-wrapper {
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-payment {
    margin: 30px 0;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.crypto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.crypto-text {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.crypto-amount {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.crypto-address {
    font-size: 16px;
    color: #fff;
    word-break: break-all;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
}

.crypto-note {
    font-size: 14px;
    color: #e0e0e0;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.6;
}

.crypto-qr {
    flex-shrink: 0;
}

.qr-code-img {
    width: 200px;
    height: 200px;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contacts {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contacts-text {
    font-size: 16px;
    color: #fff;
}

.contacts-link {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.contacts-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 22px;
    }

    .traders-image {
        width: 100%;
        max-width: 100%;
    }

    .learn-image {
        width: 100%;
        max-width: 100%;
    }

    .crypto-content {
        flex-direction: column;
        gap: 20px;
    }

    .crypto-text {
        width: 100%;
    }

    .qr-code-img {
        width: 180px;
        height: 180px;
    }

    .features-grid,
    .learn-list,
    .questions-list {
        grid-template-columns: 1fr;
    }

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

    .purchase-title {
        font-size: 28px;
    }

    .price {
        font-size: 36px;
    }
}

