/* General Styling */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f0f4f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #3498db;
    display: block;
    margin: 10px auto 0;
}

h3,
h4 {
    font-size: 28px;
    margin-top: 30px;
    color: #34495e;
    border-left: 4px solid #3498db;
    padding-left: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #7f8c8d;
}

ul,
ol {
    padding-left: 30px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-size: 16px;
}

ul li img {
    margin-right: 10px;
}

ol li {
    margin-bottom: 10px;
    color: #2c3e50;
}

hr {
    border: 0;
    height: 2px;
    background-color: #3498db;
    margin: 30px 0;
}

.call-to-action {
    background-color: #011d2f;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.call-to-action a {
    color: #0ff180;
    text-decoration: none;
    font-weight: bold;
}

.call-to-action a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 40px;
    text-align: center;
}

.social-icons img {
    width: 30px;
    margin-right: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-icons img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }

    h3,
    h4 {
        font-size: 22px;
    }

    p,
    ul li,
    ol li {
        font-size: 16px;
    }

    .container {
        padding: 20px;
    }
}