@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.site-header {
    background-color: #4a6fa5;
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8em;
    margin-bottom: 10px;
}

.site-header p {
    font-size: 1.1em;
    opacity: 0.9;
}

.site-main {
    flex-grow: 1;
    padding: 40px 0;
}

.section-block {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2em;
    color: #34495e;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.section-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.section-block ul {
    list-style: none;
    padding-left: 0;
}

.section-block ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.section-block ul li::before {
    content: '•';
    color: #4a6fa5;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.section-block a {
    color: #4a6fa5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-block a:hover {
    color: #34495e;
    text-decoration: underline;
}

.google-tool iframe {
    border: none;
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.site-footer {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2em;
    }
    .site-header p {
        font-size: 1em;
    }
    .section-block {
        padding: 20px;
    }
    .section-block h2 {
        font-size: 1.6em;
    }
    .google-tool iframe {
        height: 450px;
    }
}
