
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    margin: 0;
    padding: 0;
}

header {
   background-color: navy;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-section,
.brand-details,
.contact-info,
.newsletter,
.information-links {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover,
.brand-details:hover,
.contact-info:hover,
.newsletter:hover,
.information-links:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-section h2,
.brands-carousel h2,
.contact-info h2,
.newsletter h2,
.information-links h2 {
    color: #667eea;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.about-section h2::after,
.brands-carousel h2::after,
.contact-info h2::after,
.newsletter h2::after,
.information-links h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.brand-details h3 {
    color: #764ba2;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #667eea;
    padding-left: 15px;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    background: #f8f9ff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.about-section ul li:hover {
    background: #e8ebff;
    transform: translateX(10px);
}

.brands-carousel {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    max-height: 200px;
    object-fit: contain;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.carousel-item img:hover {
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.newsletter .form-control {
    max-width: 400px;
    border-radius: 25px;
    border: 2px solid #667eea;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.newsletter .form-control:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.newsletter .btn {
    border-radius: 25px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.information-links ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.information-links ul li a {
    color: #667eea;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.information-links ul li a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 20px 0;
    margin-top: 50px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .about-section,
    .brand-details,
    .contact-info,
    .newsletter,
    .information-links {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .information-links ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter .form-control {
        max-width: 100%;
        margin-bottom: 15px;
    }
}


