/* 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;
    }
}





















/* Extra Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
        max-height: 90vh !important;
    }
    .image-section img {
        height: auto !important;
    }
    .content-section {
        padding: 60px 50px 60px 50px !important;
    }
    .content-section h1 {
        font-size: 36px !important;
    }
    .content-section p {
        font-size: 18px !important;
    }
    .content-section .icon {
        font-size: 56px !important;
    }
}

/* Large Laptops / Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 1000px !important;
        max-height: 90vh !important;
    }
    .image-section img {
        height: auto !important;
    }
    .content-section {
        padding: 55px 45px 55px 45px !important;
    }
    .content-section h1 {
        font-size: 34px !important;
    }
    .content-section p {
        font-size: 17px !important;
    }
    .content-section .icon {
        font-size: 52px !important;
    }
}

/* Standard iPad / Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        flex-direction: column !important;
        max-height: none !important; /* allow scrolling */
        overflow-y: auto !important;
    }
    .image-section {
        max-height: 300px !important;
    }
    .image-section img {
        height: auto !important;
    }
    .content-section {
        padding: 700px 30px 45px 30px !important;
    }
    .content-section h1 {
        font-size: 30px !important;
    }
    .content-section p {
        font-size: 16px !important;
    }
    .content-section .icon {
        font-size: 48px !important;
    }
}

/* iPad Mini / Small Tablets (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .container {
        flex-direction: column !important;
        max-height: none !important;
        overflow-y: auto !important;
    }
    .image-section {
        max-height: 250px !important;
    }
    .image-section img {
        height: auto !important;
    }
    .content-section {
        padding: 40px 25px 40px 25px !important;
    }
    .content-section h1 {
        font-size: 28px !important;
    }
    .content-section p {
        font-size: 15px !important;
    }
    .content-section .icon {
        font-size: 44px !important;
    }
}

/* Large Mobile Phones (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .container {
        flex-direction: column !important;
        max-height: none !important;
        overflow-y: auto !important;
    }
    .image-section {
        max-height: 220px !important;
    }
    .image-section img {
        height: auto !important;
    }
    .content-section {
        padding: 385px 20px 35px 20px !important;
    }
    .content-section h1 {
        font-size: 26px !important;
    }
    .content-section p {
        font-size: 14px !important;
    }
    .content-section .icon {
        font-size: 42px !important;
    }
}

/* Standard Mobile Phones (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .container {
        flex-direction: column !important;
        max-height: none !important;
        overflow-y: auto !important;
    }
    .image-section {
        max-height: 200px !important;
    }
    .image-section img {
        height: auto !important;
    }
    .content-section {
        padding: 240px 15px 30px 15px !important;
    }
    .content-section h1 {
        font-size: 24px !important;
    }
    .content-section p {
        font-size: 13px !important;
    }
    .content-section .icon {
        font-size: 40px !important;
    }
}

/* Small Mobile Phones / iPhone SE (up to 374px) */
@media (max-width: 374px) {
    .container {
        flex-direction: column !important;
        max-height: none !important;
        overflow-y: auto !important;
    }
    .image-section {
        max-height: 180px !important;
    }
    .image-section img {
        height: auto !important;
    }
    .content-section {
        padding: 190px 10px 25px 10px !important;
    }
    .content-section h1 {
        font-size: 22px !important;
    }
    .content-section p {
        font-size: 12px !important;
    }
    .content-section .icon {
        font-size: 36px !important;
    }
}
