body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    background-color: #f0f4f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(https://i.imghippo.com/files/dCRm8598rKg.jpeg);
    background-size: cover;
    background-position: center;
}

.container {
    margin: 0 auto;
    padding: 2rem;
    max-width: 100%;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    color: #1a5235;
}

header p {
    color: #4a5568;
}

.intro {
    background-color: #f0f4f0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.intro p {
    color: #2d3748;
    line-height: 1.75;
}

.intro ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
    color: #2d3748;
}

.intro li {
    margin-bottom: 0.5rem;
}

.inquiry-form {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.inquiry-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15), 0 3px 7px -2px rgba(0, 0, 0, 0.1);
}

.inquiry-form h2 {
    color: #1a5235;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in-out, pulse 2s infinite alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

.inquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.inquiry-form label:hover {
    color: #2d3748;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out, shadow-sm 0.15s ease-in-out;
}

.inquiry-form input[type="text"]:focus,
.inquiry-form input[type="email"]:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.2);
    animation: inputFocus 0.5s ease;
}

@keyframes inputFocus {
    from {
        box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.1);
    }

    to {
        box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.2);
    }
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 5rem;
}

.inquiry-form button[type="submit"] {
    background-color: #48bb78;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    width: 100%;
    display: block;
    text-align: center;
}

.inquiry-form button[type="submit"]:hover {
    background-color: #38a169;
    transform: translateY(-2px) scale(1.02);
}

.inquiry-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

#responseMessage {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

/* --- iPhone Styles --- */
.iphone-frame {
    background-color: #fff;
    width: 375px;
    height: 812px;
    border-radius: 2.1666666666666667rem;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    border: 2px solid black;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 2.1666666666666667rem;
    overflow: hidden;
}

.iphone-content {
    padding: 2rem;
    padding-top: 4rem;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

/* Notch and Speaker */
.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 124px;
    height: 14px;
    background-color: #000;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.iphone-speaker {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background-color: #111;
    border-radius: 1.5px;
}

/* Styling for elements inside the phone screen */
header h1 {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 2rem;
}

header p {
    color: #ffffff;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
    font-size: 0.8rem;
}

.intro {
    background-color: rgba(240, 244, 240, 0.7);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.intro p {
    font-size: 0.9rem;
}

.intro ul {
    font-size: 0.9rem;
}

.inquiry-form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.inquiry-form h2 {
    color: #1a5235;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.inquiry-form label {
    color: #4a5568;
    font-size: 0.75rem;
    font-weight: 600;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    transition: border-color 0.15s ease-in-out, shadow-sm 0.15s ease-in-out;
}

.inquiry-form textarea {
    min-height: 4rem;
}

.inquiry-form button[type="submit"] {
    background-color: #48bb78;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    width: 100%;
    display: block;
    text-align: center;
}

.inquiry-form button[type="submit"]:hover {
    background-color: #38a169;
    transform: translateY(-2px) scale(1.02);
}

.inquiry-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

#responseMessage {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}