           /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.5;
    color: #333;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Alert bar */
.alert {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
}

.alert a {
    text-decoration: underline;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* Buttons */
.cta-button {
    background: #1B5E20;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #2E7D32;
}

.secondary-button {
    border: 1px solid #ccc;
    padding: 12px 24px;
    border-radius: 9999px;
    transition: border-color 0.3s;
}

.secondary-button:hover {
    border-color: #999;
}

.text-button {
    color: #1B5E20;
    padding: 12px 16px;
}

/* Hero section */
.hero {
    padding: 64px 0;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 600px;
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* How it works section */
.how-it-works {
    background: #f5f5f5;
    padding: 64px 0;
}

.how-it-works h2 {
    font-size: 32px;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.guide-link {
    display: inline-block;
    margin-top: 16px;
    color: #1B5E20;
    font-weight: 500;
}

/* Expert guidance section */
.expert-guidance {
    padding: 64px 0;
}

.expert-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: center;
}

.expert-image img {
    width: 100%;
    border-radius: 8px;
}

.expert-info h3 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 32px;
}

.features {
    list-style: none;
    margin-bottom: 32px;
}

.features li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1B5E20;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer-brand p {
    color: #999;
    margin-top: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #999;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #999;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.copyright {
    color: #999;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-right .currency-selector,
    .nav-right .cart {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

article{
    padding: 50px;
}

