/* Header Styling */
.site-header {
    background-color: #007bff;
    color: #fff;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 1;
}

.site-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.site-header p {
    font-size: 1.2em;
}

/* Hero Section Styling */
.hero-section {
    background: url('path/to/hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 20px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-section p {
    font-size: 1.2em;
    z-index: 1;
    position: relative;
}

/* Main Content Styling */
main {
    padding: 20px;
}

.brand-gallery {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-top: 20px;
}

.brand-gallery h3 {
    font-weight: 500;
    font-size: 35px;
    padding: 10px 0 28px 0;
    color: #FF6600;
    text-align: center;
    margin-bottom: 20px;
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.brand-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-item p {
    padding: 10px;
    font-size: 1.1em;
    color: #333;
}

/* Contact Info Styling */
.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

.contact-info h3 {
    font-weight: 500;
    font-size: 35px;
    padding: 10px 0 28px 0;
    color: #FF6600;
    text-align: center;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
}

.contact-info address {
    font-size: 1.1em;
}

.contact-info a {
    color: #007bff;
    /* Blue color for links */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    /* Underline on hover */
}



/* Responsive Design */
@media (max-width: 600px) {
    .site-header h1 {
        font-size: 2em;
    }

    .hero-section h3 {
        font-weig5t: 300;
        font-size: 35px;
        padding: 10px 0 28px 0;
        color: #FF6600;

        font-size: 2em;
    }

    .brand-gallery h3 {
        font-weig5t: 300;
        font-size: 35px;
        padding: 10px 0 28px 0;
        color: #FF6600;

        font-size: 1.5em;
    }

    .contact-info h3 {
        font-weight: 300;
        font-size: 35px;
        padding: 10px 0 28px 0;
        color: #FF6600;

        font-size: 1.5em;
    }
}