/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #24245c;
    --secondary-color: #eef2ff;
    --text-dark: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --background-dark: #ffffff;
    --highlight-color: #ffca28;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
    --border-radius: 4px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #191942;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 20px;
}

li {
    margin-bottom: 0.5rem;
}

button, .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #191942;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.light-bg {
    background-color: var(--secondary-color);
}

.highlighted {
    position: relative;
    padding-left: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

.highlighted:before {
    content: "👉";
    position: absolute;
    left: -10px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.logo img {
    margin-right: 8px;
    border-radius: 50%;
}

.header-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.important-note {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
}

/* Investment Basics Sections */
.investment-basics section {
    padding: 50px 0;
}

.section-why,
.section-how,
.section-types,
.section-returns,
.section-mistakes,
.section-strategy,
.section-start {
    padding: 30px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
}

.investment-basics h2 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Conclusion Section */
.conclusion {
    background-color: var(--secondary-color);
    padding: 50px 0;
}

.conclusion-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.conclusion h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
}

.faq-item {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e5eaff;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 20px;
    max-height: 300px;
}

/* More Info Section */
.more-info {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.more-info h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
}

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

.article-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: linear-gradient(rgba(36, 36, 92, 0.9), rgba(36, 36, 92, 0.9)), 
                url('https://via.placeholder.com/1000x600') center/cover no-repeat;
    color: white;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.cta p {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: white;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: white;
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.footer-logo img {
    margin-right: 8px;
    border-radius: 50%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Thank You Page Styles */
.thank-you-page {
    background-color: #f8f9fa;
}

.thank-you-section {
    padding: 80px 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.emoji {
    font-style: normal;
}

.info-box {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    text-align: left;
}

.contact-info {
    margin: 30px 0;
    text-align: left;
}

.contact-info .icon {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

.final-message {
    font-weight: bold;
    margin: 30px 0;
}

/* Policy Pages */
.policy-page {
    background-color: #f8f9fa;
}

.policy-section {
    padding: 60px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.policy-content h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.update-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.intro-text {
    margin-bottom: 30px;
}

.policy-block {
    margin-bottom: 30px;
}

.policy-block h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-block {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.contact-info {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .section-why,
    .section-how,
    .section-types,
    .section-returns,
    .section-mistakes,
    .section-strategy,
    .section-start {
        padding: 20px;
    }
    
    .thank-you-content,
    .policy-content {
        padding: 25px;
    }
}