/**
 * Home Text Module - Styles
 */

.hometext-module {
    margin: -90px 30px 80px 30px;
    padding: 0 20px 20px 20px;
    background: #fff;
    text-align: center;
}

.hometext-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.hometext-content {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.hometext-content p {
    margin-bottom: 15px;
}

.hometext-content strong,
.hometext-content b {
    font-weight: 700;
    color: #333;
}

.hometext-content a {
    color: #2fb5d2;
    text-decoration: underline;
    transition: color 0.3s;
}

.hometext-content a:hover {
    color: #1a8ca3;
}

.hometext-content ul,
.hometext-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.hometext-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hometext-module {
        padding: 0px 0px 15px 0px;
        margin: -50px 0px 20px 0px;
    }
    
    .hometext-title {
        font-size: 1.5em;
    }
}