body, h1, p, a, img {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    text-decoration: none;
}

.base-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-color: #21409a;
    color: white;
}

.base-section {
    flex: 1 1 calc(33% - 20px);
    background: #b0c4fd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.base-section h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.base-section p {
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.base-section.shortcuts a {
    display: block;
    margin: 5px 0;
    font-size: 1em;
    color: #044570;
    transition: color 0.3s;
}

.base-section.shortcuts a:hover {
    color: #17a8eb;
}

.base-section.socials img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.base-section.socials img:hover {
    transform: scale(1.1);
}

.footer {
    text-align: center;
    font-size: 0.9em;
    color: #bbb;
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .base-section {
        flex: 1 1 100%;
    }

    .base-section.socials img {
        width: 30px;
        height: 30px;
    }
}
