body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: #ffc107;
}

.nav-link {
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff6f61 !important;
}

.btn-outline-warning {
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-warning:hover {
    background-color: #ff6f61;
    color: #fff;
    border-color: #ff6f61;
}

.form-control {
    border-radius: 50px;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: 0 0 8px rgba(255,111,97,0.5);
    border-color: #ff6f61;
}

.hero-section {
    background: linear-gradient(rgba(30,30,47,0.6), rgba(30,30,47,0.6)), url('../img/hero-bg.jpg') center/cover no-repeat;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.product-catalog h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.product-catalog .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 12px;
}

.product-catalog .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-catalog .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-catalog .card-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.offer-section {
    background: linear-gradient(rgba(30,30,47,0.7), rgba(30,30,47,0.7)), url('../img/hero-bg.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.offer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.testimonial-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.testimonial-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-section .carousel-item p.lead {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1rem auto;
    font-style: italic;
}

.testimonial-section .carousel-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-section .carousel-item img {
    border-radius: 50%;
    border: 3px solid #ff6f61;
    padding: 2px;
}

.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    border-radius: 50%;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.accordion-button {
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
}

.accordion-button:not(.collapsed) {
    background-color: #ff6f61;
    color: #fff;
}

.accordion-body {
    font-size: 1rem;
    color: #555;
}

.newsletter-section {
    background: linear-gradient(rgba(30,30,47,0.7), rgba(30,30,47,0.7)), url('../img/hero-bg.jpg') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer-section {
    background-color: #1e1e2f;
    padding: 4rem 0 2rem 0;
    color: #ccc;
}

.footer-section h3,
.footer-section h5 {
    color: #ff6f61;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffc107;
}

.footer-section p {
    color: #ccc;
}

.footer-section hr {
    opacity: 0.3;
    margin: 2rem 0;
}

.btn-warning, 
.btn-outline-warning {
    transition: all 0.3s;
}

.btn-warning:hover, 
.btn-outline-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255,111,97,0.4);
}
