* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: #111827;
    line-height: 1.5;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: white;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.info-header p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-wrapper {
    border-radius: 50%;
    padding: 0.75rem;
    flex-shrink: 0;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-green-700 {
    background-color: #15803d;
}

.icon-wrapper .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #374151;
}

.contact-text a {
    color: #374151;
    text-decoration: none;
    margin-left: 0.25rem;
}

.contact-text a:hover {
    color: #111827;
}

/* Form Wrapper */
.form-wrapper {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
}

.clear-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #4b5563;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.clear-button:hover {
    background-color: #374151;
}

.clear-button .icon {
    width: 1rem;
    height: 1rem;
}

/* Form Styles */
#inquiryForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #111827;
    box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.1);
}

/* Submit Button */
.submit-wrapper {
    display: flex;
    justify-content: flex-start;
}

.submit-button {
    background-color: #111827;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #1f2937;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .info-header h2,
    .form-header h2 {
        font-size: 2.25rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 100vh;
    }

    .contact-section {
        padding: 6rem 0;
    }

    .container {
        padding: 0 2rem;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}