/* services.css */

body {
    line-height: 1.7;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 24px 0px;
}

.page-title {
    text-align: center;
    margin-bottom: 48px;
}

.page-title h1 {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
}

.page-title .line {
    width: 100px;
    height: 2px;
    margin: 48px auto 0;
    background: linear-gradient(to right, #e8a, #6af);
}

section {
    margin-bottom: 48px;
}

section h2 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 24px;
}

section p {
    font-size: 16px;
    color: #555;
}

.image-full img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 24px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.image-grid img {
    width: 100%;
    display: block;
}

.image-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.placeholder {
    background: #ddd;
    aspect-ratio: 1 / 1;
}

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

    .image-grid.three {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .page-title {
        margin-bottom: 80px;
    }
    
    .page-title h1 {
        font-size: 60px;
        margin: 0;
    }
    
    .page-title .line {
        margin: 80px auto 0;
    }
    
    section {
        margin-bottom: 80px;
    }
    
    section h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    section p {
        font-size: 18px;
    }

    .image-full img {
        margin-top: 40px;
    }
    
    .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 40px;
    }
    .breadcrumb{
        font-size: 90%;
        padding: 0 10px;
    }
}