/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    /* background-color: #f0f2f5; */
    color: #333;
    background: linear-gradient(150deg, #ffc5c7, #ffffff);
}
/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background: linear-gradient(to right, #ffecd2, #fcb69f); 
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 40px auto;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.info-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 280px; /* Slightly increased width for better alignment */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Vertically center content */
    align-items: center; /* Center everything */
    transition: transform 0.3s ease-in-out;
}

.info-box:hover {
    transform: scale(1.05);
}

/* Image Styling */
.info-box .icon {
    width: 60px; /* Slightly larger for better visibility */
    height: auto;
    margin-bottom: 15px; /* Space between image and text */
    max-width: 100%; /* Ensures image does not overflow */
}

/* Heading & Paragraph Styling */
.info-box h3 {
    font-size: 18px;
    color: #B50000;
    margin-bottom: 5px;
}

.info-box p {
    font-size: 14px;
    color: #555;
}

/* Contact Form */
.contact-form {
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #B50000;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    margin-top: 15px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border 0.3s;
    resize: none;
}

form input:focus, form textarea:focus {
    border: 2px solid #243b55;
    outline: none;
}
h2 {
    margin-bottom: 1em;
    color: #B50000;
}
.contact-form button {
    background: #d40000;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
}


.support-section p {
    margin: 1em;
}

/* Support & Assistance Section */
.support-section {
    text-align: center;
    padding: 40px 20px;
}

.support-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}
.support-box h3{
    color: #B50000;
}

.support-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px; /* Default width */
    flex: 1; /* Ensures even spacing */
    min-width: 280px; /* Ensures proper layout on small screens */
}
/* Media Query for Tablets (Max Width: 768px) */
@media screen and (max-width: 768px) {
    .support-boxes {
        flex-direction: column; /* Stack boxes vertically */
        align-items: center;
    }

    .support-box {
        width: 80%; /* Adjust width for better visibility */
    }

    .contact-section {
        flex-direction: column; /* Stack contact info and form vertically */
        align-items: center;
    }

    .contact-info, .contact-form {
        width: 100%; /* Adjust width for responsiveness */
    }
}

/* Media Query for Mobile (Max Width: 480px) */
@media screen and (max-width: 480px) {
    .support-box {
        width: 100%; /* Full width for small screens */
    }

    .contact-section {
        padding: 30px; /* Less padding for mobile */
    }

    .contact-info, .contact-form {
        padding: 15px; /* Less padding for smaller screens */
    }
}