/* Gradient Text Styles */
/* Text Colors */
.text-dark-blue {
    color: #2D3748 !important;
    font-weight: 600;
    font-size: 4rem;
}

.text-white {
    color: #FFFFFF !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
}

/* Font Sizes */
.display-1 {
    font-size: 4.5rem;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem;
    }

    .text-dark-blue {
        font-size: 2.5rem;
    }

    .text-light-gray {
        font-size: 1.1rem;
    }
}

.gradient-text-light {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Font Size Adjustments */
.display-2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }

    .display-2 {
        font-size: 2.75rem;
    }

    .gradient-text-light {
        font-size: 1.1rem;
    }
}