* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.international-programs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 50px;
}

.header {
    background-color: #d50000;
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
}

.header p {
    font-size: 1.2em;
    margin-top: 10px;
}

.program {
    display: flex;
    align-items: center;
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.program img {
    width: 200px;
    border-radius: 8px;
    margin-right: 20px;
}

.program-info {
    flex: 1;
}

.program-info h2 {
    font-size: 1.8em;
    color: #d50000;
}

.program-info p {
    font-size: 1.1em;
    margin-top: 10px;
}

.program-info a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #d50000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.program-info a:hover {
    background-color: #b71c1c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program {
        flex-direction: column;
        text-align: center;
    }

    .program img {
        width: 100%;
        margin-bottom: 20px;
    }
}
