* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 96px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-header {
    margin-bottom: 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-wrapper {
    border-radius: 50%;
    padding: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-green-700 {
    background-color: #15803d;
}

.icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke-width: 2;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.contact-text {
    color: #374151;
    margin-bottom: 4px;
}

.email-link {
    color: #374151;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #111827;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 32px;
}

.form-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-input:focus {
    ring: 2px;
    ring-color: #111827;
    border-color: transparent;
    box-shadow: 0 0 0 2px #111827;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-submit {
    display: flex;
    justify-content: flex-start;
}

.submit-btn {
    background-color: #111827;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1f2937;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.submit-btn:active {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .section-title,
    .form-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .contact-section {
        padding: 96px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .hero-section {
        height: 100vh;
    }
}