:root {
    --primary-color: #0a3440;
    --accent-color: #e9c46a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a2a32;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 1rem;
}

.logo-text span {
    color: var(--accent-color);
}

.logo-img {
    border-radius: 20px;
    width: auto;
    height: 90px; /* Reduced from 90px */
    max-width: 100%;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.2) brightness(1.1); /* Enhances clarity */
}

.footer-logo {
    width: auto;
    height: 90px; /* Reduced from 90px */
    border-radius: 20px;
    max-width: 100%;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated; /* Sharpens low-res images */
    filter: contrast(1.3) brightness(1.2); /* Enhances clarity */
    display: block; /* Ensures proper alignment */
}

nav {
    display: flex;
    justify-content: flex-end;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    padding: 0.5rem;
    display: block;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section Styles */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.95));
    min-height: 80vh;
    gap: 2rem;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.accent-text {
    color: var(--accent-color);
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    opacity: 0.3;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 52, 64, 0.15);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 52, 64, 0.2);
}

.secondary-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background-color: #f3d17a;
}

.hero-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.features {
    background-color: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(233, 196, 106, 0.1);
    border-radius: 30%;
    margin-bottom: 1.5rem;
}

.feature-icon span {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
}

.about {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-width: 280px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 196, 106, 0.1), transparent);
    z-index: 1;
}

.cta h2, .cta p {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    padding: 0 1rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.cta-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 196, 106, 0.3);
}

.button-text {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.button-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f3d17a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 196, 106, 0.4);
}

.cta-button:hover .button-text {
    transform: translateX(-5px);
}

.cta-button:hover .button-icon {
    opacity: 1;
    transform: translateX(0);
}

.stats {
    background-color: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

footer {
    background-color: var(--white);
    padding: 3rem 5% 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(10, 52, 64, 0.05);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile responsiveness improved */
@media screen and (max-width: 768px) {
    header {
        padding: 1rem;
        justify-content: center;
    }
    
    .logo {
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    nav {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .hero-content-left {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .image-container {
        margin-top: 2rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        width: 100%;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img, .footer-logo {
        height: 50px;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    nav ul li {
        margin: 0.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Navigation Styles */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-nav {
    padding: 0.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-container {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .nav-list {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-list {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.3rem 0.5rem;
    }
}

/* Logo Section Styles */
.logo-section {
    flex: 1;
    max-width: 400px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.company-name .highlight {
    color: var(--accent-color);
    position: relative;
}

.company-name .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    opacity: 0.2;
    border-radius: 2px;
}

.company-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive Logo Styles */
@media screen and (max-width: 768px) {
    .logo-section {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .company-name {
        font-size: 1.6rem;
    }

    .company-tagline {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-wrapper {
        gap: 0.8rem;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
    }

    .company-name {
        font-size: 1.4rem;
    }

    .company-tagline {
        font-size: 1rem;
    }
}

/* Header Styles */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    padding-left: 8rem;
}

.header-right {
    padding-right: 8rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-logo {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Responsive Header */
@media screen and (max-width: 1400px) {
    .header-left {
        padding-left: 6rem;
    }
    
    .header-right {
        padding-right: 6rem;
    }
}

@media screen and (max-width: 1200px) {
    .header-left {
        padding-left: 4rem;
    }
    
    .header-right {
        padding-right: 4rem;
    }
}

@media screen and (max-width: 992px) {
    .header-left {
        padding-left: 2rem;
    }
    
    .header-right {
        padding-right: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }

    .header-left, .header-right {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header-right {
        margin-top: 1rem;
    }

    .logo-wrapper {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 0.8rem;
    }

    .logo-wrapper {
        gap: 0.8rem;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(10, 52, 64, 0.9), rgba(10, 52, 64, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
}

.about-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-muted);
    max-width: 300px;
    margin: 0 auto;
}

.milestones-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    width: calc(50% - 30px);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
}

.timeline-content h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-muted);
}

.contact-section {
    background: linear-gradient(rgba(10, 52, 64, 0.95), rgba(10, 52, 64, 0.95)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 30px;
    }

    .timeline-content::before {
        left: -40px !important;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-buttons .primary-btn,
    .contact-buttons .secondary-btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-card {
        padding: 2rem;
    }

    .team-member {
        padding: 0 1rem;
    }

    .member-image {
        width: 150px;
        height: 150px;
    }
}

/* Auth Buttons in Navigation */
.auth-buttons {
    display: flex;
    gap: 0.8rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.nav-auth-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.login-btn {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 52, 64, 0.15);
}

.register-btn {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 196, 106, 0.2);
}

/* Responsive styles for auth buttons */
@media screen and (max-width: 768px) {
    .auth-buttons {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .nav-auth-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}
