body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f7f6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Hero Section */
.hero {
    background: linear-gradient(135deg, #1f4287, #2196F3);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #e64a19;
}

.secondary-cta {
    background-color: #4CAF50;
}

.secondary-cta:hover {
    background-color: #45a049;
}

/* Features Grid */
.features-grid {
    padding: 50px 0;
    background-color: #fff;
}

.features-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.icon-placeholder {
    font-size: 3em;
    margin-bottom: 15px;
}

/* Testimonial */
.testimonial {
    background-color: #eef5ff;
    padding: 50px 20px;
    text-align: center;
    font-style: italic;
    border-radius: 20px;
    margin: 50px 0;
}

.quote {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 10px;
}

.author {
    font-size: 1em;
    color: #555;
    font-style: normal;
}

/* Full Features List */
.full-features {
    padding: 50px 0;
}

.full-features h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1f4287;
}

.feature-list {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-list li {
    font-size: 1.1em;
    font-weight: 400;
    color: #555;
}

.feature-list .icon {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}

/* Pricing Section */
.pricing {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.pricing h2 {
    color: #1f4287;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: #1f4287;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.price {
    font-size: 3em;
    font-weight: 700;
    margin: 0;
}

.price span {
    font-size: 0.5em;
    font-weight: 400;
}

.savings {
    font-size: 1.2em;
    margin: 10px 0;
    color: #ff5722;
    font-weight: 600;
}

.installments {
    font-size: 1em;
    margin-bottom: 20px;
    font-style: italic;
}

/* Success Page Styles */
.success-header {
    background: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.success-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.success-main {
    padding: 50px 0;
}

.success-info {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.success-info h2 {
    color: #4CAF50;
}

/* Unsuccess Page Styles */
.unsuccess-header {
    background: #af4c4c;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.unsuccess-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.unsuccess-main {
    padding: 50px 0;
}

.unsuccess-info {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.unsuccess-info h2 {
    color: #af4c4c;
}



/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: #fff;
    margin-top: 50px;
}