* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
   
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 2rem;
    background-color: #f5f5f5;
}

.section-container {
    
    position: relative;
    margin-left: 10%;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    transition: 0.5s;
}
.section-container:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.8);
}
.hero-btn1{
    display: inline-block;
    text-decoration: none;
    
    color: #000000;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn1:hover{
    border: 1px solid#0e54f6;
    background:#0e54f6;
    color: #f5f5f5;
    transition: 0.3s;
}




.image-container {
    width: 500px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.section-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.text-content {
    flex: 1;
    padding-left: 2rem;
}

h2 {
    margin-bottom: 1rem;
    color: #222;
}

.description {
    text-align: justify;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .image-container {
        width: 100%;
        height: 250px;
    }
    
    .text-content {
        padding-left: 0;
    }
}