@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
    flex: 1;
    background: linear-gradient(180deg, #f5f7f6 0%, #fff 100%);
    box-sizing: border-box;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    color: #005b2e;
    text-align: center;
    margin: 2rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.structure-section {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.structure-image {
    max-width: 100%;
    margin: 2rem auto;
}

.structure-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.disclaimer-section {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disclaimer-section p {
    font-size: 1rem;
    color: #444;
    margin: 0 0 1rem 0;
    font-family: Arial, sans-serif;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .structure-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
}

@media (max-width: 479px) {
    .section-title {
        font-size: 1.8rem;
    }
}