/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    color: #da8486;
    text-align: center;
    padding: 80px 0;
}

.logo {
    margin-bottom: 40px;
}

.logo svg {
    max-width: 600px;
    height: auto;
}

header h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main content */
main {
    padding: 80px 0;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 2.5rem;
    color: #da8486;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: #f8f8f8;
    padding: 40px 30px;
    border: 1px solid #e5ae98;
    transition: all 0.3s ease;
}

.service-box:hover {
    background: white;
    border-color: #da8486;
}

.service-box h3 {
    font-size: 1.4rem;
    color: #da8486;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-box p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

/* Location section */
.location {
    background: #f0d7aa;
    padding: 60px 0;
    text-align: center;
    margin: 80px 0;
}

.location h2 {
    color: white;
    margin-bottom: 30px;
}

.location p {
    font-size: 1.3rem;
    color: white;
    font-weight: 300;
}

/* Contact section */
.contact {
    background: white;
    padding: 60px 40px;
    border: 1px solid #e5ae98;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #da8486;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5ae98;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #da8486;
    background-color: white;
}

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

button[type="submit"] {
    background: #da8486;
    color: white;
    padding: 18px 40px;
    border: none;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

button[type="submit"]:hover {
    background: #e5ae98;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 80px;
}

footer p {
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-box {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .location {
        margin: 40px 20px;
        padding: 40px 20px;
    }
    
    main {
        padding: 40px 0;
    }
    
    section {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .logo svg {
        max-width: 400px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-box {
        padding: 25px 15px;
    }
    
    .contact {
        margin: 0 10px;
        padding: 30px 15px;
    }
    
    .location {
        margin: 40px 10px;
        padding: 30px 15px;
    }
    
    .location p {
        font-size: 1.1rem;
    }
}