* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* Hero Section */
.hero {
    display: flex;
    margin-top: 50px;
    height: calc(100vh - 50px);
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    min-height: 100vh;
    /* background: linear-gradient(to right, #3a6073, #16222a); */
    color: black;
}

.hero-content {
    max-width: 600px;
}
.hero-span{
    font-size: 1.8rem;
}

.hero-paragraph {
    margin-top: 1rem;
}
.hero-background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsla(50, 100%, 73%, 45%);
    border-radius: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-content .highlight {
    color: black;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn.primary {
    border: 2px solid black;
    /* background-color: #4caf50; */
    color: black;
}

.btn.primary:hover {
    background-color: gray;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid black;
    color: black;
}

.btn.secondary:hover {
    background-color: #fff;
    color: #16222a;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .cta-buttons {
        justify-content: center;
        display: block;
    }
}
/* #hero {
    width: 100%;
    margin-top: 50px;
    height: calc(80vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    width: calc(100% - 90px);
    height: 90%;
    background-color: hsla(50, 100%, 73%, 45%);
    border-radius: 20px;
    display: flex;

}

.hero-info {
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    line-height: 1.3rem;

}

.hero-span{
    font-size: 1.8rem;
}

.hero-paragraph {
    margin-top: 1rem;
} */