* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #077DFF;
    min-height: 100vh;
    padding: 40px 20px;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #077DFF;
    margin-bottom: 20px;
}

.description {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.section {
    margin-bottom: 60px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #077DFF;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #077DFF;
}

.image-container {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
    }
}