

.hero {
    position: relative;
    min-height: calc(100vh - 150px); 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 8%;
    background: #ffffff;
    overflow: hidden;
     font-family: 'Barlow', sans-serif;
}



.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 500;
    color: #3f3f3f;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #282828;
    margin-bottom: 35px;
}



.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}



.hero-btn.primary {
    background: #111827;
    color: #ffffff;
}

.hero-btn.primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}



.hero-btn.secondary {
    background: #f3f4f6;
    color: #111827;
}

.hero-btn.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.divider {
    font-size: 14px;
    color: #9ca3af;
}


@media (max-width: 768px) {

    .hero {
        padding: 50px 6%;
        min-height: calc(100vh - 120px);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 220px;
        text-align: center;
    }
}