/* Basic Reset and Body Styling */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* background: linear-gradient(135deg, #1e3c72, #2a5298); */
    background: linear-gradient(135deg, #142e50, #142e50);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main Container */
.container {
    display: flex;
    max-width: 900px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /* Ensures the image corners are also rounded */
}

/* Left Side: Image Section */
.image-section {
    flex-basis: 45%;
    background-color: #f0f4f8;
    /* A light background color */
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes the image fill the container without distortion */
}

/* Right Side: Content Section */
.content-section {
    flex-basis: 55%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-section .icon {
    font-size: 48px;
    color: #f0ad4e;
    /* Warning yellow color */
    margin-bottom: 20px;
    text-align: center;
}

.content-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #d9534f;
    /* A suspension red color */
    margin-bottom: 15px;
    text-align: center;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.content-section .contact-info {
    background-color: #f7f7f7;
    border-left: 4px solid #f0ad4e;
    padding: 15px;
    border-radius: 4px;
}

.content-section .suspension-note {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.content-section a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        /* Stack image and content vertically */
    }

    .image-section {
        max-height: 250px;
        /* Give the image a fixed height */
    }

    .content-section {
        padding: 40px 25px;
    }

    .content-section h1 {
        font-size: 28px;
    }
}