*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background-color: #f0f2f5;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: url('images/mtc_background.png') no-repeat center / cover;
}


.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-button {
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 3; /* Ensures it's above the overlay */
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: white;
    color: #1c1c1e; /* A dark color for the text */
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center; /* CHANGE: This will center the combined icon + text block */
    width: 100%;
    max-width: 1200px; /* Keep this max-width for the internal content block */
    padding: 0; /* REMOVE any horizontal padding from here, we'll use margin on the icon */
}

.app-icon {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -150px; /* CHANGE THIS. I've set it to -150px as a stronger example. */
                 /* You can use -100px, -200px, or any other negative value */
                 /* to push it further left. A larger negative number = further left. */
}

.app-icon-img {
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
}

.text-content {
    color: white;
    text-align: left;
    max-width: 600px;
    /* Removed flex-grow: 1; */
}

.intro {
    font-size: 1.1em;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.app-name {
    font-size: 3em;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.tagline {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

.download-button {
    background-color: #00aaff;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.download-button:hover {
    background-color: #0088cc;
}

.app-stores {
    display: flex;
    gap: 15px;
}

.app-store-badge {
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.app-store-badge:hover {
    transform: translateY(-3px);
}

/* ================================================= */
/* NEW Features Section Styles                       */
/* ================================================= */

.features-section {
    background-color: #ffffff;
    padding: 100px 20px;
    width: 100%;
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-text {
    flex: 2; /* Give the text block twice as much space */
    max-width: 650px;
}

.features-text h2 {
    font-size: 2.8em;
    font-weight: bold;
    color: #1c1c1e;
    margin-bottom: 15px;
}

.features-subtitle {
    font-size: 1.2em;
    color: #6c6c70;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #eef5ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 28px;
    height: 28px;
}

.feature-item-text h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #1c1c1e;
    margin: 0 0 5px 0;
}

.feature-item-text p {
    font-size: 1em;
    color: #6c6c70;
    line-height: 1.6;
    margin: 0;
}

.features-image {
    flex: 1; /* Let the image take up the remaining smaller portion */
    max-width: 400px;
    margin-top: 170px; /* Add this line */
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Responsive Adjustments for Features Section --- */
@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
        text-align: center;
    }

    .features-image {
        display: none; /* <-- ADD THIS LINE to hide the image */
    }
    
    .feature-item {
        text-align: left; /* Keep feature text left-aligned even if container is centered */
    }

    .contact-container {
        flex-direction: column-reverse; /* Puts the form first on mobile */
        text-align: center;
        padding: 50px 20px;
    }

    .contact-form-section {
        text-align: left; /* Keep form text aligned left */
    }
}

@media (max-width: 768px) {

    .contact-button {
        top: 15px;
        right: 15px;
    }

    .features-text h2 {
        font-size: 2.2em;
    }

    .banner-container {
        height: auto;
    }

     .coming-soon-section {
        padding: 60px 20px;
    }
    
    .coming-soon-section p {
        font-size: 3.5em;
        letter-spacing: 2px;
    }

    .content {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px; /* Provides proper internal spacing */
    }

    .app-icon {
        position: static;
        /* This margin ensures the icon is properly centered */
        margin: 0 auto 30px auto;
        width: 200px; /* Restoring explicit width */
        height: 200px;/* Restoring explicit height */
    }

    .text-content {
        max-width: 90%;
    }

    .app-name {
        font-size: 2.5em;
    }

    .tagline {
        font-size: 1em;
    }

    .app-stores {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-icon {
        width: 120px;
        height: 120px;
    }

    .app-name {
        font-size: 2em;
    }

    .download-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .app-store-badge {
        height: 35px;
    }
}

/* ================================================= */
/* NEW Contact Page Styles                           */
/* ================================================= */

.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 100vh;
}

.contact-form-section {
    flex: 1;
    max-width: 500px;
}

.contact-form-section h2 {
    font-size: 2.8em;
    font-weight: bold;
    color: #1c1c1e;
    margin-bottom: 15px;
}

.contact-form-section p {
    font-size: 1.1em;
    color: #6c6c70;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-image-section {
    flex: 1;
    max-width: 450px;
}

.contact-image-section img {
    width: 100%;
    height: auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #1c1c1e;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    font-family: Arial, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2);
}

.submit-button {
    background-color: #007aff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #0056b3;
}