* {
    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: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #e87838;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.8rem;
    color: #2d3e3f;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 30px;
}

.services {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.services-heading {
    color: #2d3e3f;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-intro {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.services-list li {
    padding: 8px 0;
    color: #2d3e3f;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.services-list li:before {
    content: "•";
    color: #e87838;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.contact-info {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-details p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-details .address {
    color: #2d3e3f;
    line-height: 1.8;
}

.contact-details a {
    color: #2d3e3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e87838;
}

.contact-form {
    text-align: left;
}

.contact-form h3 {
    text-align: center;
    color: #2d3e3f;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

button {
    background: #e87838;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px;
}

button:hover {
    background: #d66a2a;
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.4rem;
        letter-spacing: 5px;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}