/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.about-campbell {
    padding: 80px 5%;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.sub-title {
    color: #990f16; /* Gold color from the logo/highlights */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 36px;
    color: #002b5c; /* Navy Blue color */
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight:800;
}

.main-title span {
    color: #990f16;
}

.description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #002b5c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #990f16;
}

.image-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-box img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .main-title {
        font-size: 28px;
    }
}