
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;
    color: #333;
    background-color: #f8f9fa;
}

small, .small-text {
    font-family: sans-serif;
    font-size: 0.875rem;
}


header {

    background-color: #343a40;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    
}

#fomenu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#fomenu a {
    text-decoration: none;
    color: #fcf9f9;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

#fomenu a:hover {
    color: #b5b6b7;
}

#fomenu a:first-child {
    margin-right: auto; 
    
}

#fomenu a img {
    height: 50px;
    width: auto;
}




main {
    padding: 2rem 0;
}

article {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.trend-content {
    line-height: 1.7;
}

.article-footer {
    border-top: 1px solid #e9ecef;
    margin-top: 1.5rem;
    padding-top: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}


article img {
    width: 35%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

#testimonialCarousel {
  max-width: 500px;
  margin: 0 auto;
}

.carousel-inner {
  min-height: 180px;
  display: flex;
  align-items: center;
}

.blockquote {
  font-size: 1.1rem;
  padding: 0 2rem;
}



section:first-child {
    padding: 0;
    margin-bottom: 2rem;
}

section:first-child iframe {
    width: 100%;
    height: 500px;
    border: none;
}

section:nth-child(2) {
    background-color: white;
    padding: 2rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

section:nth-child(2) video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
}


section:nth-child(3) ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}

section:nth-child(3) li {
    flex: 1;
    min-width: 300px;
}

section:nth-child(3) li div {
    background: white;
    padding: 1.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s;
}

section:nth-child(3) li div:hover {
    transform: translateY(-5px);
}

section:nth-child(3) img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    #fomenu a {
        padding: 0.5rem;
    }
    
    section:first-child iframe {
        height: 300px;
    }
    
    section:nth-child(3) li {
        min-width: 100%;
    }
}