﻿.two-col-section {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 40px;
    background: #f9fafc;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Left Image */
.two-col-image {
    flex: 1;
}

    .two-col-image img {
        width: 100%;
        height: auto;
        border-radius: 14px;
        object-fit: cover;
    }

/* Right Content */
.two-col-content {
    flex: 1;
}

    .two-col-content h2 {
        font-size: 26px;
        color: #1a2a5b;
        margin-bottom: 15px;
    }

    .two-col-content p {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 20px;
    }

/* Button */
.two-col-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a2a5b;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

    .two-col-btn:hover {
        background-color: #0d1a3c;
    }

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    .two-col-section {
        flex-direction: column;
        padding: 25px;
    }

    .two-col-content h2 {
        font-size: 22px;
    }
}
