@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
  overflow-x: hidden;
  margin: auto;
}

/* About Section */
.about-section {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}
.about-section h1 {
    font-size: 36px;
    color: #f04e30;
    margin-bottom: 20px;
}
.about-section h2 {
    font-size: 28px;
    color: #333;
    margin-top: 20px;
}
.about-section p {
    font-size: 18px;
    line-height: 1.6;
    margin: 15px 0;
}
.about-section ul {
    list-style: none;
    padding: 0;
}
.about-section ul li {
    font-size: 18px;
    margin: 10px 0;
    padding-left: 15px;
    position: relative;
}
.about-section ul li::before {
    content: "\2713";
    color: #f04e30;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Override semantic element display */
article, aside, figcaption, figure, footer, header, hgroup, main, section {
    display: block;
}

/* Specific override for nav */
nav {
    display: flex !important;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ab3238;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        display: none !important;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.active {
        display: block !important;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
    }
}