@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #222;
}

/* Intro section */
.intro-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #1e293b, #334155);
    color: white;
}
.intro-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.intro-left {
    flex: 1 1 300px;
    text-align: center;
}
.intro-left img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}
.intro-left img:hover {
    transform: scale(1.05);
}
.intro-right {
    flex: 1 1 400px;
}
.intro-right h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #60a5fa;
}
.intro-right h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #60a5fa;
}
.intro-right p {
    font-size: 1.1em;
    margin: 8px 0;
}
.intro-right a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}
.intro-right a:hover {
    color: #93c5fd;
}

/* Request section */
.request-section {
    background-color: transparent;
    padding: 60px 20px;
}
.request-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #1e293b;
}
.request-form {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.request-form:hover {
    transform: translateY(-5px);
}
.request-form input,
.request-form textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 1em;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}
.request-form input:focus,
.request-form textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96,165,250,0.4);
    outline: none;
}
.request-form .row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.request-form .row input {
    flex: 1;
}
.request-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95em;
}
.request-form .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95em;
}
.request-form button {
    padding: 14px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.request-form button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(96,165,250,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .intro-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .intro-right {
        text-align: center;
    }
    .request-form .row {
        flex-direction: column;
    }
}