* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #9b40ea;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    width: 940px;
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    background-color: #f5f5f2;
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-banner {
    width: 940px;
    max-width: 100%;
    padding: 0 20px;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content */
.main-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-family: 'Boldone', Arial, sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
    color: #333333;
    margin-bottom: 20px;
}

.content-section p {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
}

.content-section a {
    color: #9b40ea;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

.content-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 16px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 10px;
}

.footer-item .icon,
.footer-icon {
    font-size: 20px;
    min-width: 30px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.footer-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-column a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-column a:hover {
    color: #9b40ea;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555555;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 14px;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: 80px;
    }

    .header-container {
        width: 100%;
    }

    .logo {
        width: 150px;
    }

    .hero-banner {
        width: 100%;
    }

    .main-content {
        max-width: 100%;
        padding: 30px 20px;
    }

    .content-section h2 {
        font-size: 32px;
    }

    .content-section p {
        font-size: 18px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
    }

    .logo {
        width: 120px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section p {
        font-size: 16px;
    }

    .main-content {
        padding: 20px 15px;
    }
}
