body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.hero {
    background-image: url(bgsec.jpg);
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 200px;
}

.cta-link {
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    background-color: gold;
    color: darkblue;
    padding: 0.8rem 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 640;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-link:hover {
    background-color: #ffcc00;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-text p {
    font-size: 1.5rem;
}

.how-it-works {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: white;
    margin-bottom: 4rem;
}

.how-it-works h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    background-color: rgb(15, 15, 83);
    color: white;
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 30px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    max-width: 100%;
    /* Ensure steps do not overflow */
}

#name {
    text-align: center;
}

.pricing {
    padding: 4rem 1.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.pricing h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.image-link img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.note {
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
}

.cta {
    padding: 8rem 1.5rem;
    text-align: center;
    background-color: rgb(15, 15, 83);
    /* Dark background for contrast */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cta-content {
    max-width: 600px;
    /* Center the content */
}

.cta h1 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    /* Increased margin to center vertically */
}

.cta-button {
    background-color: gold;
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 640;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        flex: 1 1 auto;
        /* Full width on small screens */
        max-width: 90%;
    }

    .cta h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .image-link img {
        width: 100%;
        /* Ensure image scales properly */
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .steps {
        padding: 1rem;
    }

    .step {
        padding: 0.8rem 1.5rem;
    }

    .cta h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

.benefits {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: white;
    margin-bottom: 4rem;

}

.benefits h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefit-circles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.benefit-circle {
    background-color: rgb(15, 15, 83);
    color: white;
    padding: 2rem;
    margin: 1rem;
    border-radius: 30px;
    text-align: center;
    font-size: 1.2rem;
    flex: 1 1 18%;
    /* Flex item with minimum width */
    max-width: 2000px;
    /* Optional: Restrict circle size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.portfolio {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: #fff;
    /* Match the existing design */
    margin-bottom: 4rem;
}

.portfolio h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.portfolio-button {
    background-color: gold;
    color: darkblue;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 640;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-button:hover {
    background-color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-circle {
        flex: 1 1 40%;
        /* Adjust for smaller screens */
        max-width: none;
        /* Remove max-width restriction */
    }
}

@media (max-width: 480px) {
    .benefit-circle {
        flex: 1 1 90%;
        /* Full width on small screens */
    }
}

.portfolio-note {
    margin-top: 3rem;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}