body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

.header {
    text-align: center;
    padding: 30px 0;
}

.company-name {
    font-size: 42px;
    font-weight: 700;
    color: #1a212a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.company-name span {
    color: #b39656;
}

.tagline {
    color: #b39656;
    font-style: italic;
    margin-top: 10px;
    letter-spacing: 1px;
    font-size: 18px;
}

.hero {
    background-image: linear-gradient(rgba(26, 33, 42, 0.8), rgba(26, 33, 42, 0.8)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    width: calc(50% - 20px);
    box-sizing: border-box;
}

.card h2 {
    color: #1a212a;
    border-bottom: 2px solid #b39656;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-info {
    margin: 40px 0;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.contact-info h2 {
    color: #1a212a;
    border-bottom: 2px solid #b39656;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icons a {
    display: inline-block;
    color: #1a212a;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #b39656;
}

footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.service {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    width: calc(33% - 20px);
    box-sizing: border-box;
    text-align: center;
    border-top: 4px solid #b39656;
}

.service-icon {
    font-size: 40px;
    color: #b39656;
    margin-bottom: 15px;
}

.service h3 {
    color: #1a212a;
}

.values {
    text-align: center;
    margin: 50px 0;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.value {
    flex: 1;
    max-width: 300px;
    padding: 20px;
}

.value h3 {
    color: #1a212a;
    margin-bottom: 15px;
}

.value-icon {
    font-size: 36px;
    color: #b39656;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .card, .service {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .company-name {
        font-size: 32px;
    }
    
    .values-container {
        flex-direction: column;
        align-items: center;
    }
}