.hero {
    height: 90vh;
    /* background: url("https://picsum.photos/1920/1080?random=1") center/cover
        no-repeat; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content {
    background-color: #262626;
    /* padding: 2rem; */
}
.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.2rem;
    position: relative;
}

.gold-hr {
    opacity: 1;
    color: #bb9057;
    width: 130px;
    border-top: 2px solid #bb9057;
    margin-top: 18px;
}

.custom-underline {
    width: 120px;
    height: 2px;
    background-color: #262626;
    margin-inline-start: 0;
}

.unit-card {
    border: 1px solid #ddd;
    transition: transform 0.2s ease;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.unit-card .card-header.bg-dark {
    background-color: #262626 !important;
    font-weight: 500;
}

.unit-card .card-body h5 {
    font-size: 1.25rem;
}

/* Active tab styling */
.nav-tabs .nav-link {
    border: none;
    color: #262626;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
    color: #262626;
    border-bottom: 2px solid #262626;
}

.card-header{
  background: #262626;
}


.btn-newsletter {
    background-color: #262626;
    color: #fff;
    width: 150px;
}

.btn-newsletter:hover {
    background-color: #262626;
    color: #fff;
}

.table-pricing th{
  font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .unit-card .card-body h5 {
        font-size: 1rem;
    }

    .custom-underline {
        width: 100px;
    }

    .tab-btn {
        font-size: 0.9rem;
    }
}
