
.geo-section {
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 40px;
    margin-top: 20px;
}
.geo-section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-bottom: 32px;
}
.geo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.geo-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s;
}
.geo-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.geo-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0047AB;
    margin-bottom: 16px;
    border-left: 3px solid #0047AB;
    padding-left: 12px;
}
.geo-card p, .geo-card a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}
.geo-card a:hover {
    color: #0047AB;
    text-decoration: underline;
}
.products-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.products-tags span {
    background: #f0f4fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #0047AB;
}
@media (max-width: 768px) {
    .geo-section {
        padding: 24px;
    }
    .geo-section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .geo-grid {
        flex-direction: column;
    }
}
