* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0,3rem 16%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 1px;
    background: #1a1a1a;
    transition: all 0.3s;
}

/* Main Content */
main {
    margin-top: 100px;
    min-height: calc(100vh - 200px);
}

.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 8% 120px;
}

.page-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: #1a1a1a;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #444;
    margin-bottom: 2.5rem;
    font-family: 'Georgia', serif;
}

.about-highlight {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 3rem 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.divider {
    width: 80px;
    height: 1px;
    background: #1a1a1a;
    margin: 3rem auto;
}

/* Footer */
footer {
    background: #ffffff;
    color: #ffffff;
    padding: 2rem 8%;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.social-links a {
    color: #0b0b0b;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
