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

body {
    background: #00043b;
    color: white;
    font-family: 'Patrick Hand SC', cursive;
}
  
.about-page {
padding: 40px 60px 80px;
}

/* Navbar */
.navbar {
background: #162067;
border-bottom: 4px solid #00a2ff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 26px;
}

.logo {
font-size: 2rem;
font-weight: bold;
color: white;
text-decoration: none;

}

.nav-buttons {
display: flex;
gap: 16px;
}

.nav-btn {
text-decoration: none;
background: #f1f1f1;
color: #222;
padding: 10px 28px;
border-radius: 12px;
border: 2px solid #999;
font-size: 1.1rem;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* Title */
.about-hero {
display: flex;
justify-content: center;
margin-bottom: 40px;
}

.title-box {
background: #67c6ef;
border-radius: 20px;
padding: 20px 40px;
border: 3px solid #9e9e9e;
}

.title-box h1 {
color: #111;
font-size: 2.8rem;
text-transform: uppercase;
}

/* Intro */
.intro {
margin-bottom: 60px;
}

.intro p {
line-height: 1.8;
font-size: 1.1rem;
border-left: 4px solid #67c6ef;
padding-left: 14px;
}

/* Sections */
.content-section {
display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;
margin-bottom: 80px;
}

.text {
flex: 1;
}

.text.full {
width: 100%;
}

.text h2 {
font-size: 2rem;
margin-bottom: 14px;
text-transform: uppercase;
}

.text p {
line-height: 1.8;
font-size: 1.05rem;
}

/* Images */
.image {
flex: 0 0 300px;
}

.image img {
width: 100%;
object-fit: contain;
}

/* RESPONSIVE */
/* @media (max-width: 900px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }

    .image {
        max-width: 250px;
    }

    .about-page {
        padding: 30px 20px;
    }
} */