* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255,255,255,0.3);
    color: #000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .logo img{
    height: 2.5rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-banner {
    width: 100%;
    text-align: center;
    position: relative;
}

.header-banner h3{
    position: absolute;
    width: 100%;
    text-align: center;
    top: 40%;
    font-size: 2.4rem;
    color: #fff;
    text-shadow: 2px 2px 4px #000000;
}

.header-banner img {
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.search-container {
    flex-grow: 1;
    max-width: 350px;
    margin: 0 20px;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 15px 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    border: solid 1px #efefef;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #00a0e9;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.section {
    background: white;
    margin-bottom: 2rem;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #00a0e9;
    padding-bottom: 0.5rem;
}

/* Help Options */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.help-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.help-card p {
    color: #666;
    margin-bottom: 1rem;
}

.btn {
    background: #00a0e9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #2980b9;
}

.title-1{
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

/* Media Content */
.media-section {
    line-height: 2em;
    max-width: 100%;
}

.media-section img{
    max-width: 100%;
}

.image-gallery {
    line-height: 2em;
}

.video-1 {
    width: 100%;
    border-radius: 10px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.contact-item {
    padding: 1rem;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #00a0e9;
}

/* Responsive Design */
@media (max-width: 768px) {
    header{
        position:initial;
    }

    .header-content {
        gap: 1rem;
    }
    
    .header-banner h3{
        font-size: 1.8rem;
    }
    
    .header-banner img{
        width: auto;
        height: 300px;
    }

    .search-container {
        margin: 0;
        max-width: 100%;
        order: 3;
    }

    .section {
        padding: 1rem;
    }

    .media-section {
        grid-template-columns: 1fr;
    }

    .video-section iframe {
        height: 200px;
    }
}

/* Additional Styles */
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}


.title-list{
    width: 100%;
}

.title-list ul{
    list-style: none;
    padding: 0;
}

.title-list ul li a{
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
}

.title-list ul li a:hover{
    color: #00a0e9;
}



.page {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.page .page-list {
  display: inline-block;
}

.page .page-list ul{
  width: 100%;
}

.page .page-list ul li{
  list-style: none;
  float: left;
}

.page .page-list ul li a{
   text-align: center;
   padding: 5px 10px;
   text-decoration: none;
   border: solid 1px #efefef;
   margin:0 5px;
   color: #333;
}

/* .page .page-list a,
.page .page-list span {
  width: 28px;
  height: 28px;
  float: left;
  font-size: 16px;
  line-height: 24px;
  color: #86898f;
  box-sizing: border-box;
  margin: 0 12px;
  display: block;
}

.page .page-list span {
  border-bottom: 2px solid #00a0e9;
  color: #00a0e9;
} */


.footer-content {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    background: #dedede;
}

.footer-txt {
    color: #666;
}
