﻿.resources {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.resources__content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.resources__text {
    flex: 2;
    color: #333;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

.resources__text p {
    margin-bottom: 20px;
}

.resources__text strong,
.resources__text b {
    font-weight: 600;
    color: #2c5671;
}

.resources__text a {
    color: #2c5671;
    text-decoration: none;
}

.resources__text a:hover {
    text-decoration: underline;
}

.resources__image-wrapper {
    flex: 1;
    max-width: 350px;
}

.resources__image {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .resources__content {
        flex-direction: column-reverse;
    }

    .resources__image-wrapper {
        max-width: 100%;
    }

    .resources__image {
        width: 100%;
        object-fit: cover;
        border-radius: 4px;
    }
}
