:root {
    --dark-bg: #1F2937;
    --header-text: #F9FAF8;
    --secondary-text: #E5E7EB;
    --accent-blue: #3882F6;
}

.signup-btn:hover {
    background-color: #F9FAF8;
    color: var(--accent-blue);
    transition: 0.3s;
}

.hero-section {
    background-color: var(--dark-bg);
    padding: 20px 15%;
    color: var(--header-text);

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary-text);
    font-size: 18px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    gap: 40px;

}



.hero-text {
    flex: 1;

}

.image-placeholder {
    flex: 1;
    background-color: #6d747d;
    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}

.hero-text h1 {
    font-size: 48px;
    color: var(--header-text);
    font-weight: 900;
    margin-bottom: 8px;

}


.hero-text p {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 24px;
}

.signup-btn {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;

    cursor: pointer;

}

.info-section {
    padding: 50px 15%;
    text-align: center;
}

.info-section h2 {
    font-size: 36px;
    font-weight: 900;

    color: #1F2937;
    margin-bottom: 40px;

}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    width: 150px;

}

.square {
    border: 4px solid var(--accent-blue);
    border-radius: 15px;
    height: 150px;
    width: 150px;
    margin-bottom: 10px;

}

.card p {
    color: #555;

}

.quote-section {
    background-color: var(--secondary-text);
    padding: 100px 20%;
    display: flex;
    justify-content: center;
}

.quote-container {
    max-width: 800px;
}

.quote-text {
    font-style: italic;
    color: var(--dark-bg);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;

}

.quote-author {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-bg);
    text-align: right;
}


.cta-section {
    padding: 80px 15%;

}

.cta-box {
    background-color: var(--accent-blue);
    color: white;
    padding: 50px 100px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cta-text p {
    font-weight: 300;
}

.signup-btn {
    border: 2px solid white;
    background-color: transparent;
}

footer {
    background-color: var(--dark-bg);
    color: var(--secondary-text);
    text-align: center;
    padding: 30px;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}