.transfers-intro {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: opacity 0.25s;
}

.intro-section {
    max-width: 800px;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 100px;
}

.intro-section h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.intro-section p {
    font-size: 1.2em;
    color: #555;
    width: calc(100% - 30px);
    margin: 0;
}

.service-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    margin-top: 0;
    margin-bottom: 0;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: 400px;
    flex-direction: column;
    align-items: center;
}

.option {
    background-color: wheat;
    border-radius: 20px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.index-option-btn {
    width: 200px;
    height: 40px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 17px;
    font-family: Raleway;
    background-color: black;
    margin-bottom: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, border-radius 0.3s;
}

.index-option-btn:hover {
    transform: scale(1.1);
    border-radius: 14px;
}
.option img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.option h2 {
    font-size: 1.5em;
    margin: 15px;
    margin-bottom: 0;
}

.option p {
    font-size: 1em;
    color: #666;
    margin: 15px;
}

.luxury-services-section {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.luxury-service-card {
    position: relative;
    height: 250px;
    width: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.luxury-service-card:hover {
    transform: scale(1.03);
}

.luxury-service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
}

.luxury-service-card:hover .luxury-service-info {
    background: rgba(0, 0, 0, 0.8);
}

.luxury-service-heading {
    font-family: 'Lexend';
    font-size: 22px;
    margin: 10px 0 0 0;
    text-align: left;
    font-weight: 200;
}

.luxury-service-heading,
.luxury-service-text {
    width: calc(100% - 30px);
}

.luxury-service-text {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}




@media (max-width: 768px) {
    .service-options {
        grid-template-columns: 1fr;
    }
}