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

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

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    background: #fff;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #333;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
}

.cta-button {
    background: #febb32;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
}

/* Control Section */
.control-section {
    padding: 60px 0;
    background: #fff;
}

.control-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

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

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

.control-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.control-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Business Section */
.business-section {
    padding: 60px 0;
    background: #fff;
}

.business-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.business-image {
    flex: 1;
}

.business-image img {
    width: 100%;
    max-width: 400px;
}

.business-text {
    flex: 1;
}

.business-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bullet {
    color: #febb32;
    font-size: 1.2rem;
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Network Section */
.network-section {
    padding: 0;
    background: #fff;
    width: 100%;
}

.network-section .container {
    max-width: 100%;
    padding: 0;
}

.network-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.benefits-section {
    padding: 0;
    background: #fff;
    width: 100%;
}

.benefits-section .container {
    max-width: 100%;
    padding: 0;
}

.benefits-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Economic Section */
.economic-section {
    padding: 60px 0;
    background: #fff;
}

.economic-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.economic-text {
    flex: 1;
}

.economic-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

.economic-features {
    display: flex;
    gap: 40px;
}

.feature-column h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-column ul {
    list-style: none;
}

.feature-column li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.feature-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #febb32;
    font-weight: bold;
}

.economic-image {
    flex: 1;
}

.economic-image img {
    width: 100%;
    max-width: 400px;
}

/* Small Business Section */
.small-business-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.small-business-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

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

.business-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.business-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.business-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Registration Section */
.registration-section {
    padding: 60px 0;
    background: #fff;
}

.registration-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.registration-text {
    flex: 1;
}

.registration-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #febb32;
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 25px;
    font-style: italic;
    color: #666;
    font-size: 0.85rem;
}

.registration-image {
    flex: 1;
}

.registration-image img {
    width: 100%;
    max-width: 400px;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.pricing-logo {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-logo img {
    width: 60px;
}

.pricing-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #febb32;
    color: #000;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 0.9rem;
}

td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

tr:hover {
    background: #f8f9fa;
}

.pricing-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Conversion Section */
.conversion-section {
    padding: 60px 0;
    background: #fff;
}

.conversion-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.conversion-text {
    flex: 1;
}

.conversion-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

.promoter-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

.promotion-note {
    margin-top: 25px;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.conversion-image {
    flex: 1;
}

.conversion-image img {
    width: 100%;
    max-width: 400px;
}

/* Footer Image Section */
.footer-image-section {
    padding: 0;
    background: #fff;
    width: 100%;
}

.footer-image-section .container {
    max-width: 100%;
    padding: 0;
}

.footer-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.footer-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

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

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card img {
    width: 330px;
    height: 203px;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Immediate Contact */
.immediate-contact {
    padding: 60px 0;
    background: #fff;
}

.immediate-contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-option {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-option .icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.contact-option h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.contact-option p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .business-content,
    .benefits-content,
    .economic-content,
    .registration-content,
    .conversion-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .control-section h2,
    .business-text h2,
    .network-section h2,
    .benefits-section h2,
    .economic-text h2,
    .small-business-section h2,
    .registration-text h2,
    .pricing-section h2,
    .conversion-text h2,
    .footer-section h2,
    .immediate-contact h2 {
        font-size: 1.8rem;
    }

    .economic-features {
        flex-direction: column;
        gap: 20px;
    }

    .chart-container {
        width: 200px;
        height: 200px;
    }

    .chart-container::after {
        width: 120px;
        height: 120px;
    }

    table {
        font-size: 0.8rem;
    }

    th, td {
        padding: 10px 8px;
    }

    .hero-image img,
    .business-image img,
    .economic-image img,
    .registration-image img,
    .conversion-image img {
        max-width: 100%;
    }
}
