* {
    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: fixed;
    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 #ff6f61;
}

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

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

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

.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: #ff6f61;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* 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("about-hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: backgroundZoom 10s infinite alternate ease-in-out;
}

@keyframes backgroundZoom {
    0% { background-size: 100%; }
    100% { background-size: 120%; }
}

.hero-overlay {
    text-align: center;
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px outset #ff6f61;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.hero-overlay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

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

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

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

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

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

.feature-list {
    list-style-type: none;
}

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

.feature-list li::before {
    content: '•';
    color: #ff6f61;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

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

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

.block-caption {
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.9);
}

/* Footer Styles */
.main-footer {
    background-color: #000;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid #ff6f61;
}

.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: #ff6f61;
    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: 680px) {
    .header-content {
        flex-direction: column;
    }
    
    .hero-overlay h2 {
        font-size: 1.5rem;
    }
}