/* ===== ОСНОВНІ КОНТЕЙНЕРИ ===== */
/* Видалення стандартних відступів контейнера */
.container-fluid {
    padding-left: 0;
    padding-right: 0; 
}

/*Основний контейнер для центрування*/
.main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    background: white;
}

.main-container > * {
    flex-shrink: 0;
}

.service-page {
    min-height: calc(100vh - 150px);
}

/*Секція Вступ*/
.intro-section {
    padding: 40px 0 50px;
    background-color: #eff7fd;
    position: relative;
    text-align: center;
    border-top: none;
    border-top: 2px solid #657894;
    border-bottom: 2px solid #657894;
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 0;
    box-sizing: border-box;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #334155;
    margin-bottom: 10px;
    text-align: left;
}

/*Текст для заголовку*/
.services-header h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 10px;
    padding-bottom: 0.5rem;
    position: relative;
    text-align: center;
    z-index: 10;
}

/* Контейнер для інформації */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.text-image-section {
    display: flex;
    align-items: stretch;
    margin: 60px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7); /*0.1*/
    overflow: hidden;
    position: relative;
    min-height: 500px;
    border: 2px solid #657894;
}

.text-image-section:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8); /*0.15*/
}

.text-image-section:nth-child(even) {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-image-section:not(:nth-child(even)) .text-content::after {
    right: -100px;
    background: linear-gradient( to right,
        rgba (255,255,255,1) 0%,
        rgba (255,255,255,0) 100%);
}

.text-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 5px;
    position: relative;
    letter-spacing: -0.5px;
}

.text-content h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2c3e50);
    border-radius: 4px;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #34495e;
    max-width: 90%;
}

.text-content ul {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #34495e;
    max-width: 90%;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.text-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.text-content ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    display: block;
}

.image-container {
    flex: 1;
    overflow: hidden;
    min-height: 400px;
    max-height: 500px;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.text-image-section:hover .image-container img {
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn-content-box 1.2s ease-out forwards;
    opacity: 0;
}

/* Секція про гарантію */
.guarantees-section {
    padding: 80px 0;
    background-color:#eff7fd;
    position: relative;
    text-align: center;
    border-top: 2px solid #657894; 
    border-bottom: 2px solid #657894;
    /* 9fa5ad */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.guarantees-section::before {top: 0;}
.guarantees-section::after {bottom: 0;}

.guarantees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    position: relative;
    z-index: 2;
}

.guarantees-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guarantee-column {
    flex: 0 0 350px;
    min-width: 280px;
    max-width: 350px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #1e293b;
    position: relative;
    overflow: hidden;
}

.medal-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    position: relative;
}

.guarantee-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    min-height: 3.5rem;
}

.guarantee-column p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #34495e;
    max-width: 100%;
}

/* Секція Про нас */
.about-section {
    padding: 80px;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    max-width: 1000px;
    margin-left: 0;
    padding-right: 30px;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #34495e;
    margin-bottom: 10px;
    text-align: left;
}