/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #676767;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background-color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Brands Section */
.brands {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.brands h1,
.section-description {
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.brand-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.brand-logo {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.brand-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.brand-content {
    padding: 1.5rem;
}

.brand-content h2 {
    margin-bottom: 0.5rem;
}

.brand-content p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.learn-more {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Background Colors */
.bg-blue-light { background-color: #f0f7ff; }
.bg-orange-light { background-color: #fff7ed; }
.bg-teal-light { background-color: #f0fdfa; }
.bg-gray-676767 { background-color: #676767; }
.bg-gray-454545 { background-color: #454545; }

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.offices {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-card {
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.office-card h2 {
    margin-bottom: 1rem;
}

.office-card p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.office-card i {
    margin-right: 0.5rem;
    color: #666;
}

.office-card a {
    color: #2563eb;
    text-decoration: none;
}

.office-card a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #676767;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #545454;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 2rem 0;
    text-align: center;
    color: #666;
}

/* Icon Styles */
.icon {
    margin-right: 0.5rem;
    width: 1em;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #676767;
        padding: 1rem;
    }

    .nav-list.show {
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}