.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.services-page h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.winter-card {
    border: 2px solid #7cc9ff;
    border-radius: 12px;
    padding: 25px;
    background: linear-gradient(135deg, #e9f7ff, #ffffff);
    margin-bottom: 20px;
    position: relative;
}

.winter-card:before {
    content: "⛄️";
    font-size: 38px;
    position: absolute;
    top: -18px;
    right: -18px;
}

.winter-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #006aa8;
}

.winter-card ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

.form-card {
    border: 1px solid #373737;
    border-radius: 12px;
    padding: 25px;
    background-color: #fafafa;
    margin-top: 20px;
}

.form-card input,
.form-card select,
.form-card textarea,
.form-card button {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.form-card label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-card button {
    background-color: #50a78b;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
}

.form-card button:hover {
    background-color: #3e8269;
}


#modalMessage {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#modalClose {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#modalClose:hover {
    color: #000;
}
