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

html, body {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    background-color: #111;
    color: white;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-align: center;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    position: relative;
    padding: 0.3rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: red;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}
table {
    margin: 2rem auto;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    width: 80%;
    max-width: 600px;
}

table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 69, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

table td:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/* Hero Section */
.hero-section {
    width: 100%;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("back1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    padding: 2rem;
}

.hero-overlay h2 {
    font-size: 2rem;
    max-width: 800px;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* Content Container */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-block {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.content-block:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.content-block p {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Content blocks with images */
.with-image {
    padding: 0;
    overflow: hidden;
}

.with-image img {
    width: 100%;
    height: auto;
    display: block;
}

.block-content {
    padding: 1.5rem;
}

.block-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ff6b6b;
}

/* Video embed */
.content-block iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Action Section */
.action-section {
    margin: 3rem 0;
}

.action-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
}

.action-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.action-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.action-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ff6b6b;
}

.action-card p {
    margin-bottom: 1.5rem;
}

.action-button {
    display: inline-block;
    padding: 0.7rem 1.3rem;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.action-button:hover {
    background-color: #ff5252;
}

/* Footer Styles */
.main-footer {
    background-color: #000;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 69, 0, 0.3);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff6b6b;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-info {
    text-align: center;
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .hero-overlay h2 {
        font-size: 1.5rem;
    }
    
    .content-block iframe {
        height: 250px;
    }
    
    .main-nav {
        gap: 1rem;
    }
}