* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    padding-top: 100px; /* Prevent content from hiding under navbar */
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between; /* Initially: Logo left, menu right */
    align-items: center;
    padding: 15px 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease-in-out;
}

/* LOGO */
.logo img {
    height: 150px;
    transition: filter 0.3s ease-in-out, height 0.3s, transform 0.5s ease-in-out;
}

/* NAVIGATION BOX */
.nav-container {
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out, padding 0.5s ease-in-out, width 0.5s ease-in-out;
}

/* NAVIGATION LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    transition: gap 0.5s ease-in-out, justify-content 0.5s ease-in-out;
}

/* NAVIGATION LINKS STYLE */
.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 8px 15px;
    transition: color 0.3s;
}

/* SCROLL EFFECTS */
.navbar.scrolled {
    background: black;
    padding: 10px 30px;
    justify-content: center; /* Move everything to center */
}

/* Move both logo and menu to the center */
.navbar.scrolled .logo {
    transform: translateX(0); /* Logo moves to center */
}

.navbar.scrolled .nav-container {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Menu moves to center */
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 50px;
}

.navbar.scrolled .nav-links {
    gap: 20px;
}

.navbar.scrolled .nav-links li a {
    color: white;
}

/* Logo color change */
.navbar.scrolled .logo img {
    filter: brightness(0) invert(1);
    height: 0px;
}

/* CONTENT */
.content {
    height: 200vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    max-width: 600px;
}


.container {
    width: 100%;
    min-height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container h2 {
    color: #1f283b;
    font-size: 38px;
    padding: 30px 0;
    text-align: center;
    margin-top: 80px; /* Add space between navbar and heading */
}


.container p {
    font-size: 18px;
    margin-top: -15px;
    /* Move text up */
    margin-bottom: 60px;
    /* Add space below <p> */
    text-align: center;
}

.price-row {
    width: 90%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px; /* Keeps proper spacing between boxes */
    margin-bottom: 80px; /* Extra space before contact/footer */
}


.price-col {
    background: rgb(210, 209, 209);
    padding: 10% 15%;
    border-radius: 10px;
    color: black;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.price-col p {
    font-size: 20px;
    text-align: center;
    font-weight: bold; /* OR */
    font-weight: 700; /* Standard bold weight */
}


.price-col h3 {
    font-size: 44px;
    margin: 20px 0 40px;
    font-weight: 500;
    text-align: center;
}

.price-col h3 span {
    font-size: 15px;
    color: black;
}

.price-col ul {
    text-align: left;
    margin: 20px 0;
    color: black;
    list-style: none;
    flex-grow: 1;
}

.price-col ul li {
    margin: 15px 0;
}

.price-col ul li::before {
    content: '\2022';
    color: #e33058;
    font-weight: bold;
    margin-right: 8px;
}

.price-col button {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    color: black;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #e33058;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.5s, color 0.5s;
    align-self: flex-end;
}

.price-col button:hover {
    background: #e33058;
    color: white;
}




/* Footer Background */
.footer {
    background-color: rgba(4, 9, 30, 0.7);
    /* Dark background */
    color: rgba(4, 9, 30, 0.7);
    /* Text color */
    padding: 50px 0;
}

.footer p {
    color: lightgray;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Each Column */
.footer-column {
    width: 23%;
    /* Each column takes 23% of the width */
    padding: 10px;
}

/* Footer Titles */
.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Unique Title Colors */
.about-title {
    color: rgba(4, 9, 30, 0.7);
    /* Orange */
}

.resources-title {
    color: rgba(4, 9, 30, 0.7);
    /* Blue */
}

.legal-title {
    color: rgba(4, 9, 30, 0.7);
    /* Tomato Red */
}

/* Links Styling */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    /* Light gray */
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: rgba(4, 9, 30, 0.7);
    /* White on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}