.services-module {
    background-color: #f9f7f2;
    padding: 60px 20px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.services-header {
    margin-bottom: 50px;
}

.services-subtitle {
    font-size: 14px;
    color: #a38b59;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.services-title {
    font-size: 36px;
    color: #0b1a26;
    margin: 0 0 20px 0;
    font-weight: normal;
    letter-spacing: 1px;
}

.services-divider {
    width: 50px;
    height: 1px;
    background-color: #a38b59;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    flex: 1;
    min-width: 256px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.service-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #a38b59;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    overflow: hidden;
    padding: 5px;
}

.service-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.service-name {
    font-size: 20px;
    color: #0b1a26;
    margin: 0 0 15px 0;
    font-family: sans-serif;
    letter-spacing: 1px;
}

.service-tags {
    font-size: 13px;
    color: #a38b59;
    font-family: sans-serif;
    margin-bottom: 15px;
}

.service-small-divider {
    width: 30px;
    height: 1px;
    background-color: #d1c8b3;
    margin: 0 auto 20px auto;
}

.service-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    font-family: sans-serif;
}

.service-link {
    font-size: 14px;
    color: #b33939;
    font-weight: bold;
    text-decoration: none;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #8a2a2a;
}