﻿.container {
    max-width: 800px;
    padding: 20px;
    margin: auto;
    background-color: #fff;
    border-radius: 12px;
}

main {
    background: #eff4ff;
    padding: 40px 0 0 0;
}

h1, h2 {
    color: #155dee;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.4em;
    border-bottom: 3px solid #155dee;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.6em;
    margin-top: 40px;
}

h3 {
    color: #155dee;
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 12px;
}

p, li {
    line-height: 1.7;
    font-size: 1.05em;
    margin-bottom: 12px;
}

ul {
    margin-left: 20px;
}

a {
    color: #2196F3;
    text-decoration: none;
}

.date {
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.highlight {
    background-color: #e3f2fd;
    padding: 15px;
    margin: 20px 0;
}

.important {
    background-color: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

strong {
    color: #155dee;
}

/* //////////////////////////////////// */
/* FOOTER SOCIAL MEDIA */
/* //////////////////////////////////// */

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #155dee;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background-color: #163cc4;
            transform: scale(120%);
        }

    .footer-social svg {
        width: 20px;
        height: 20px;
        fill: #101828;
        transition: fill 0.3s ease;
    }

    .footer-social a:hover svg {
        fill: #fff);
    }

@media (max-width: 768px) {
    .footer-social {
        gap: 15px;
    }

        .footer-social a {
            width: 35px;
            height: 35px;
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
        }
}
