/* Home Hero Section */
.hero {
    padding: 4rem 0 0;
    text-align: center;
    background: var(--gradient-background);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    background-color: transparent;
    overflow: visible;
    background-color: rgb(13,17,23);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.description-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.description {
    background: white;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    border: 2px solid red;
}

.description-content {
    padding: 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
    background-color: black;
}

.description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.description .cta-text {
    font-weight: 600;
    color: var(--orange);
    text-align: center;
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0;
    background: var(--primary-light);
    padding: 1rem 0;
    border-radius: var(--border-radius-md);
}

/* Features */
.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.feature-box {
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(13,13,13, 0.9);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 350px;
    min-height: 100%; /* Ensures better adaptability in flex container */
    box-sizing: border-box;
}
.feature-boxing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    

}
.feature-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}
.feature-description {
    font-size: 1rem;
    text-align: center;
    flex: 1; /* Makes description take available space */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/* Support */
.contact{
    margin-top: 0;
}
.contact-form {
    background-color: rgba(13, 13, 13);
    border-radius: 20px;
}
.custom-input {
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #e9ecef;
}