
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #3d3d3d;
    background-color: #faf8f3;
    line-height: 1.6;
}

header {
    background-color: #faf8f3;
    border-bottom: 1px solid #f0ebe0;
    padding: 20px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #b8956a;
    letter-spacing: 1px;
    text-decoration: none;
}

nav a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d4a574;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #3d3d3d;
    margin-bottom: 12px;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #9a9a9a;
    margin-bottom: 60px;
    font-size: 16px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-group {
    margin-bottom: 32px;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 12px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-value {
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 400;
    line-height: 1.8;
}

.contact-info-box a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: #c99360;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #3d3d3d;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e8dcc8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-button {
    background: #d4a574;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.submit-button:hover {
    background: #c99360;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
}

.form-status {
    text-align: center;
    font-size: 14px;
    margin-top: 16px;
    min-height: 20px;
}

footer {
    background: #3d3d3d;
    color: white;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    margin-top: 60px;
}

footer a {
    color: #d4a574;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 36px;
    }
}
