* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #8b8b8b;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-background {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-background img {
    width: 100%;
    max-width: 900px;
    display: block;
    mix-blend-mode: multiply;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.4em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slogan {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.slogan p {
    font-family: Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #8b8b8b;
    margin: 0 auto 30px;
}

.contact-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b8b8b;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 15px 50px;
    background-color: #333;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

.btn-submit:hover {
    background-color: #555;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.contact-info p {
    margin: 5px 0;
    color: #666;
    font-size: 0.95rem;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #333;
}

/* Footer */
footer {
    padding: 15px 20px;
    text-align: center;
}

footer p {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
        letter-spacing: 0.3em;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact h2 {
        font-size: 2rem;
    }
}
