* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0d47a1; /* Dark Blue from screenshot */
    color: white;
    display: flex;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 450px; /* Mobile View Width */
    padding: 15px;
    background: linear-gradient(180deg, #1565c0 0%, #0d47a1 100%);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    background: white;
    color: #1565c0;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 8px;
}

.logo-text span {
    font-size: 12px;
    opacity: 0.8;
}

/* Buttons */
.btn-download-sm {
    background: #ff8f00;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: bold;
}

.btn-download-lg {
    background: #ff8f00;
    border: none;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 0;
}

.hero h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-image img {
    width: 80%;
    margin-bottom: 20px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-card {
    background: #e3f2fd;
    color: #0d47a1;
    padding: 15px 5px;
    border-radius: 15px;
    text-align: center;
}

.feature-card .icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.feature-card h3 {
    font-size: 14px;
    margin-bottom: 2px;
}

.feature-card p {
    font-size: 10px;
    opacity: 0.7;
}

/* Info Section */
.white-box-title {
    background: white;
    color: #0d47a1;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.text-content h3 {
    font-size: 14px;
    margin-top: 15px;
    color: #ffffff;
}

.text-content p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.blue-banner {
    background: #e3f2fd;
    color: #0d47a1;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
}

/* Rebate Section */
.rebate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.rebate-card {
    padding: 15px 5px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.level-label { font-size: 12px; font-weight: bold; }
.percent { 
    background: white; 
    color: #333; 
    border-radius: 20px; 
    margin: 5px 0; 
    padding: 5px; 
    font-weight: bold; 
}
.profit-label { font-size: 10px; }

.level-a { background: #64b5f6; } /* Light Blue */
.level-b { background: #ff7043; } /* Coral Red */
.level-c { background: #66bb6a; } /* Green */
