/* Section Background */
.exchange-section {
    background: #eef5f9;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

/* Main Layout */
.exchange-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}



.exchange-left h1 {
    font-size: 36px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.exchange-left p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #012a63;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.partner-btn:hover {
    background: #003c94;
}

/* Right Side */
.exchange-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 45%;
}

/* Info Box */
.info-box {
    width: 700px;
    display: flex;
    gap: 18px;
    padding: 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    align-items: center;
}

.info-box .icon img {
    width: 55px;
    height: 55px;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #012a63;
}

.info-box p {
    margin-top: 5px;
    color: #555;
    font-size: 15px;
}



/* Responsive */
@media(max-width: 750px) {
    .exchange-container {
        flex-direction: column;
    }
    .exchange-right {
        width: 100%;
    }
}






.ruthko-news-section {
    padding: 60px 5%;
    background: #f8f9fa;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h2 {
    font-size: 32px;
    font-weight: 800;
}

.news-header p {
    font-size: 15px;
    color: #555;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform .2s;
}

.news-card:hover {
    transform: translateY(-6px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
    color: #555;
}

.read-more {
    margin-top: 10px;
    display: inline-block;
    font-weight: bold;
    color: #007cba;
    text-decoration: none;
}



.testimonials-section {
    padding: 70px 5%;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 32px;
    font-weight: 800;
}

.testimonials-header p {
    font-size: 15px;
    color: #555;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 25px;
}

.testimonial-card {
    padding: 25px;
    background: #f7fbff;
    border-left: 6px solid #007cba;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.testimonial-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.testimonial-role {
    font-size: 14px;
    color: #777;
}
