﻿
.works-section {
    padding: 100px 40px;
    background-color: white;
    text-align: center;
}

.works-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.works-content p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 15px;
    color: #666;
}

.btn-consultation {
    display: inline-block;
    background-color: #1B3164;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn-consultation:hover {
        background-color: #1B3164;
    }

.process-section {
    padding: 80px 40px;
   /* background-color: #f8f9fa;*/
}

.process-section2 {
     background-color: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

    .process-step.reverse {
        flex-direction: row-reverse;
    }

.step-image {
    flex: 1;
}

    .step-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.step-content {
    flex: 1;
}

    .step-content h3 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #333;
        text-transform: uppercase;
        font-weight:400;
    }

    .step-content p {
        margin-bottom: 30px;
        color: #666;
        font-size: 20px;
        line-height: 1.6;
    }
.works-section2 {
    background-color: #1B3164;
    padding: 50px 0px;
}
    .works-section2 .works-content h1 {
        color:#fff;
    }
    .works-section2 .works-content p {
        color: #fff;
    }

    @media (max-width: 768px) {
        .works-content h1 {
        font-size: 24px;
    }

    .works-content p {
        font-size: 14px;
    }
    .process-step {
        flex-direction: column;
        text-align: center;
    }

        .process-step.reverse {
            flex-direction: column;
        }
}