body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    color: #333;
    background-image: url('../assets/abt-lines.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 100px;
}

.text-content {
    max-width: 60%;
    min-width: 280px;
    margin-top: 6rem;
    padding: 3rem;
}

h1 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 0.4em;
}

p {
    font-size: 1.1em;
    margin-bottom: 2em;
    line-height: 1.6;
}

a {
    display: inline-block;
    font-size: 1.3em;
    color: #0056b3;
    text-decoration: none;
    margin-bottom: 1em;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

a:hover {
    color: #003d80;
    border-bottom: 2px solid #003d80;
}

a.active,
nav .nav-links a.active {
    color: #003d80;
    border-bottom: 2px solid #003d80;
    font-weight: bold; 
}

@media (max-width: 1200px) {
    body {
        background-image: none;
    }

    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .text-content {
        max-width: 100%;
        padding: 3rem;
        margin-top: 2rem;
    }

    a {
        font-size: 2.5em;
    }

    .logo {
        margin-left: 0;
        margin-top: 40px;
        max-width: 200px;
    }
}