body { 
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global responsive settings */
.container, .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Banner Section */
.promo-banner {
    text-align: center;
    padding: 60px 20px;
}

.promo-banner h1 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 15px;
}

.promo-banner h1 span {
    color: #7d22e7;
}

.promo-banner p {
    font-size: clamp(14px, 3vw, 18px);
    color: #4b5563;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.main-btn, .alt-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    margin-bottom: 10px;
}

.main-btn {
    background: #7d22e7;
    color: white;
}

.main-btn:hover {
    background: #5e14b8;
}

.alt-btn {
    background: white;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}

.alt-btn:hover {
    background: #f1f5f9;
}

/* Founder Section */
.founder-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 50px auto;
    padding: 15px;
    border-radius: 10px;
    flex-direction: row;
}

.founder-image {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
    margin: 0;
}

.founder-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.founder-info {
    width: 60%;
    padding-left: 30px;
}

.founder-info h1 {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: bold;
    color: #222;
}

.founder-name {
    font-size: clamp(22px, 4vw, 30px);
    color: #6a0dad;
    margin-top: 5px;
}

.founder-info h4 {
    font-size: clamp(14px, 3vw, 18px);
    color: #444;
    line-height: 1.5;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.stats div {
    text-align: center;
}

.stat-number {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: bold;
    color: #6a0dad;
}

.stat-text {
    display: block;
    font-size: clamp(10px, 2vw, 12px);
    color: #666;
}

/* Why Choose Us Section */
.why-choose-us {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.badge {
    display: inline-block;
    background: rgba(128, 0, 255, 0.1);
    color: purple;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.why-choose-us p {
    font-size: clamp(14px, 3vw, 16px);
    color: #4b5563;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 300px;
    flex: 1 1 250px;
    transition: transform 0.3s;
    margin-bottom: 20px;
}

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

.service-card i {
    font-size: 40px;
    color: #7d22e7;
    display: block;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: bold;
    color: #0f172a;
    margin: 10px 0;
}

.service-card p {
    font-size: clamp(12px, 2vw, 14px);
    color: #4b5563;
    margin-bottom: 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    max-width: 600px;
    padding: 50px 20px;
    margin: 0 auto;
}

.hero {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: bold;
    color: #0f172a;
    margin: 10px 0;
}

.hero-section p {
    font-size: clamp(14px, 3vw, 16px);
    color: #4b5563;
    margin-bottom: 20px;
}

.cta-button2 {
    display: inline-block;
    background: #7d22e7;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.cta-button2:hover {
    background: #5e14b8;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .founder-section {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image, .founder-info {
        width: 100%;
        padding: 15px;
    }
    
    .founder-image {
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .stats {
        justify-content: center;
    }
    
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-btn, .alt-btn {
        width: 80%;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .promo-banner, .why-choose-us, .hero-section {
        padding: 40px 15px;
    }
}