.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 50px;
    position: relative;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer {
    padding: 1rem 0;
    margin-top: 3rem;
}

.footer a {
    text-decoration: none;
}

.footer-left a {
    margin-left: 0.5rem;
}

.footer-right a {
    align-items: end;
    margin-right: 0.5rem;
    
}


@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }
    
    .main-content {
        margin: 1rem;
        padding: 1rem;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left, .footer-right {
        margin: 0.5rem 0;
    }
    
    .footer a {
        margin: 0 0.5rem;
    }
}

.content-section p {
    text-align: justify;
}
