
.servicii-page .hero-section {
    background: linear-gradient(to right, #fefefe, #e8f8f5);
    padding: 60px 0 30px;
    text-align: start;
    border-bottom: 1px solid #ddd;
    color: black;
}

.servicii-page .hero-section h1 {
    font-size: 36px;
    color:black;
    margin-bottom: 20px;
}

.servicii-page .hero-section h2 {
    font-size: 24px;
    color: #555;
}

.hero-text {
    font-size: 20px;
    color: #333;
    margin-top: 30px;
    padding: 10px;
}

.icon-title {
    margin-right: 8px;
    font-size: 28px;
}
.contain{
     max-width: 1320px;
    margin: 0 auto;
}
.contain .hero-section{
    margin: 10px;
    padding: 10px;
}

.servicii-page .contain {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 30px;
}

.info-section .left,
.info-section .right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.info-section .left h2 {
    font-size: 24px;
    color: #00bfa6;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 350px;
}

.icon-section {
    font-size: 22px;
    color: #00bfa6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.service-box {
    flex: 1 1 300px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00bfa6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-box h3::before {
    content: "✔️";
    font-size: 18px;
}

.contact-form-section {
    background-color: #e8f8f5;
    padding: 40px 0;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 26px;
    color: #00bfa6;
}

.contact-form-section p {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.contact-form-section form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form-section button {
    background-color: #00bfa6;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form-section button:hover {
    background-color: #019e8c;
}

.contact-form-section label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}