/* Hero section adjustments - reduce top spacing */
.section-hero .sect-main {
    padding-top: 0 !important;
}

.section-hero .sect-title {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-top: -25px !important; /* Reduced negative margin to add more space above */
}

.section-hero .sect-title h1 {
    margin-bottom: 20px !important;
}

/* Hero action buttons - align left */
.hero-action-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-action-buttons .tf-btn {
    min-width: 180px;
}

/* Style the buttons - remove blue, use dark theme */
.hero-action-buttons .tf-btn.style-3 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-action-buttons .tf-btn.style-3:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-action-buttons .tf-btn.style-2 {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-action-buttons .tf-btn.style-2:hover {
    background: #ffffff;
    border-color: #ffffff;
}

/* Get started button trigger for modal */
.get-started-hero {
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .hero-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-action-buttons .tf-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-hero .sect-title {
        margin-top: -20px !important;
    }
}