* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.video-container {
    width: 100%;
    max-width: 1000px; /* adjust if needed */
    margin: 40px auto; /* center */
    padding: 0 15px;
}

.video-container video {
    width: 80%;
    height: auto;
    border-radius: 12px;
    display: block;
}


#slogan {
    font-style: italic;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero {
    background: url('../web images/X.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #f1a600;
    color: white;
}

.btn-primary:hover {
    background-color: #ebc470;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #f1a600;
    color: #f1a600;
    background: transparent;
}

.btn-outline:hover {
    background-color: #f1a600;
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8fafc;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a202c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card h3 {
    color: #0d9488;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a202c;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: #0d9488;
    margin: 2rem 0 1rem 0;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        margin-top: 70px;
    }
}