/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header .logo {
    font-size: 18px;
    font-weight: bold;
}

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

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    text-align: center;
}

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

.hero p {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

/* Cards Section */
.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.card {
    width: 320px;
    background: white;
    border-radius: 10px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
    position: relative;
}

.card .close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 14px;
}

.card h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}

.card button {
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.btn-primary {
    background-color: #7d89f7;
    color: white;
}

.btn-secondary {
    background-color: #000;
    color: white;
}

/* How it Works */
.how-it-works {
    margin-top: 80px;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.step {
    width: 200px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step .icon {
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.step h3 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.step p {
    font-size: 14px;
    color: #666;
}

/* Call to Action */
.cta-section {
    background-color: #111;
    color: white;
    padding: 50px;
    margin-top: 80px;
    text-align: center;
}

.cta-section h2 {
    font-size: 24px;
}

.cta-section p {
    font-size: 16px;
    color: #bbb;
    margin-top: 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.cta-buttons .btn-primary {
    background-color: #7d89f7;
    color: white;
}

.cta-buttons .btn-secondary {
    background-color: white;
    color: black;
}

/* Footer */
.footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
