/* Common Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00cc99;
    --light-color: #ffffff;
    --dark-color: #333333;
    --gray-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px; /* Account for fixed navbar */
}

/* Navigation */
.navbar {
    background-color: var(--light-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 40px;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero h2 {
    font-size: 2rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

/* Image containers */
.img-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF5733; /* 您可以根据需要调整颜色 */
    margin-top: 10px; /* 您可以根据需要调整上边距 */
    text-align: center; /* 将文本居中对齐 */
  }
  

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}
.hero-logo {
    height: 200px;
    width: auto;
    vertical-align: middle;
    margin: 0 10px;
}
.team-member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 4px solid var(--light-color);
    transition: transform 0.3s ease;
}

.team-member-img:hover {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--primary-color);
    margin-top: 1rem;
    font-size: 1.5rem;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Video Section */
.video-section {
    background-color: var(--video-bg-color);;
    color: var(--light-color);
    padding: 5rem 0;
}

.video-section .section-title {
    color: #0066cc;
    margin-bottom: 2.5rem;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 12px;
    overflow: hidden;
}



.video-container video{
    width: 100%;
} 

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.footer h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .team-member-img {
        width: 150px;
        height: 150px;
    }
}

p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}