body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fdfeff;
    color: #222;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}
a:hover, .nav-link:hover, .footer-link:hover {
    color: #ff0043;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 20px;
    flex-wrap: wrap;
}
header img {
    max-width: 100%;
    height: auto;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}
.nav-link {
    font-weight: 500;
    color: #222;
}
.options select {
    border: none;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 5px;
    color: #222;
}
.search {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.search-icon {
    color: #a7acb0;
    margin-right: 8px;
}
.form-control {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
}
.search-button {
    border: none;
    background: #fff;
    color: #a7acb0;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}
.hero-buttons {
    display: flex;
    gap: 25px;
}
.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 300;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: #ff0043;
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #ff0043;
    border: 2px solid #ff0043;
}
.btn-primary:hover, .btn-outline:hover {
    background: #d30038;
    color: #fff;
    border-color: #d30038;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #ff0043;
    cursor: pointer;
}
.section {
    padding: 60px 0;
}
.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.08);
    padding: 40px 30px;
    max-width: 600px;
    margin: 0 auto;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: left;
    margin-bottom: 30px;
}
.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.form-group label {
    color: #413c3c;
    font-weight: 500;
    font-size: 0.95rem;
}
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    font-size: 0.95rem;
    color: #222;
    resize: none;
    transition: border-color 0.3s;
}
input::placeholder,
textarea::placeholder {
    color: #aaa;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-bottom-color: #ff0043;
    background: transparent;
}
textarea {
    min-height: 120px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 20px;
    background: transparent url("data:image/svg+xml,%3Csvg fill='%23333' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 0 top 50%;
    background-size: 12px;
    cursor: pointer;
}
button[type="submit"] {
    margin-top: 10px;
    width: 160px;
    align-self: flex-end;
    font-weight: 600;
    letter-spacing: 0.5px;
}
footer {
    background: #f1f5f9;
    padding: 40px 0 20px 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
}
.footer-link {
    color: #222;
    font-weight: 500;
    font-size: 1rem;
}
.contact-icons a {
    color: #ff0043;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.contact-icons a:last-child {
    margin-right: 0;
}
.contact-icons a:hover {
    color: #ff0043;
}
.copyright {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}
@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
    }
    .contact-card {
        padding: 25px 15px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    button[type="submit"] {
        width: 100%;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .mobile-menu-btn {
        display: block;
    }
}
@media (min-width: 481px) and (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .form-row {
        flex-direction: column;
    }
    .contact-card {
        padding: 35px 20px;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .contact-card {
        padding: 40px 30px;
    }
    .section-title {
        font-size: 2.5rem;
    }
}