/* Text Size Modifiers */
.text-large {
    font-size: 25px;
}

.text-medium {
    font-size: 18px;
}

.text-small {
    font-size: 16px;
}

.text-xsmall {
    font-size: 14px;
}

/* Color Utilities */
.text-white {
    color: #ffffff;
}

.text-primary {
    color: var(--primary-color);
}

.text-gray {
    color: #ccc;
}

.text-dark-gray {
    color: #aaa;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* Spacing Utilities */
.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-40 {
    margin-top: 40px;
}

/* Mobile Overrides */
@media (max-width: 768px) {
    .text-large {
        font-size: 18px;
    }

    .text-medium {
        font-size: 16px;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}