* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Styles */
.harshwal-nav-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.harshwal-navbar-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: relative;
}

.harshwal-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    margin-right: auto;
    flex-shrink: 0;
}

.harshwal-nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.harshwal-nav-menu-list {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    height: 100%;
    margin: 0;
    padding: 0;
}

.harshwal-nav-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 70px;
}

.harshwal-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: color 0.3s;
    height: 100%;
    cursor: pointer;
    white-space: nowrap;
}

.harshwal-nav-link:hover {
    color: #1a3d5c;
}

.harshwal-nav-link-dropdown::after {
    content: '▼';
    font-size: 9px;
    transition: transform 0.3s;
    margin-left: 2px;
}

.harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
    transform: rotate(180deg);
}

.harshwal-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 999;
}

.harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.harshwal-nav-dropdown-item {
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s;
}

.harshwal-nav-dropdown-item:hover {
    background: #f5f7fa;
    color: #1a3d5c;
    padding-left: 25px;
}

.harshwal-nav-cta-btn {
    background: linear-gradient(45deg, #5f2a52, #862a2a);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 10px;
}

.harshwal-nav-cta-btn:hover {
    background: #6d2349;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
}

.harshwal-nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
    margin-left: 15px;
}

.harshwal-nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #1a3d5c;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #3a7ca5 50%, #4a93bd 100%);
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
    opacity: 0.6;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 650px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-content .description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-content .description strong {
    font-weight: 600;
    color: #ffffff;
}

.hero-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.syologist-logo-container {
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.syologist-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-button {
    display: inline-block;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #4a1f3f, #6b2020);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 42, 82, 0.6);
    color: white;
}

/* Partnership Section */
.partnership-section {
    padding: 100px 20px;
    background: #ffffff;
}

.partnership-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partnership-header {
    text-align: center;
    margin-bottom: 60px;
}

.partnership-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.1;
}

.partnership-header p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.partner-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.partner-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.partner-features {
    list-style: none;
    padding: 0;
}

.partner-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.125rem;
    color: #666;
}

.partner-features li:before {
    content: '✓';
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 12px;
    margin-right: 16px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

/* What You Can Expect Section */
.expect-section {
    background: #f8fafc;
    padding: 100px 20px;
}

.expect-container {
    max-width: 1200px;
    margin: 0 auto;
}

.expect-header {
    text-align: center;
    margin-bottom: 60px;
}

.expect-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expect-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.expect-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.expect-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.expect-icon-box i {
    font-size: 1.8rem;
    color: white;
}

.expect-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.expect-card p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why It Matters Section */
.why-matters {
    background: linear-gradient(135deg, #8b5a8c 0%, #a67c9b 50%, #c4a4b4 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.why-matters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.why-matters-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-matters-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.why-matters-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-matters-list {
    max-width: 900px;
    margin: 0 auto;
}

.why-matters-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.why-matters-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.why-matters-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.why-matters-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.why-matters-text {
    font-size: 1.1rem;
    color: white;
    text-align: left;
    line-height: 1.5;
}

.why-matters-footer {
    margin-top: 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 100px 20px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    background: #f8fafc;
    padding: 100px 20px;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-header {
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.why-choose-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* .why-choose-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
} */

.why-choose-card {
    background: linear-gradient(to bottom, #5f2a52, #862a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    color: white;
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgb(124 124 124 / 40%);
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(124 124 124 / 40%);
    color: white;
}

/* Footer Styles */
.harshwal-footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.harshwal-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.harshwal-footer-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.harshwal-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.harshwal-cta-description {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.harshwal-btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #5f2a52, #862a2a);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.harshwal-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
    color: white;
}

.harshwal-footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .harshwal-footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.harshwal-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.harshwal-section-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.harshwal-footer-links {
    list-style: none;
    padding: 0;
}

.harshwal-footer-links li {
    margin-bottom: 0.8rem;
}

.harshwal-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.harshwal-footer-link:hover {
    color: #4299e1;
}

.harshwal-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.harshwal-social-link {
    display: flex;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: 600;
}

.harshwal-social-link:hover {
    background: #4299e1;
    transform: translateY(-2px);
    color: white;
}

.harshwal-contact-info {
    margin-bottom: 1.2rem;
}

.harshwal-contact-label {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.harshwal-contact-value {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
}

.harshwal-contact-value a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.harshwal-contact-value a:hover {
    color: #4299e1;
}

.harshwal-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.harshwal-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.harshwal-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.harshwal-footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.harshwal-footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.harshwal-footer-legal-link:hover {
    color: #4299e1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .harshwal-navbar-container {
        padding: 0 15px;
        min-height: 60px;
    }

    .harshwal-nav-logo img {
        height: 35px;
    }

    .harshwal-nav-menu-list {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
    }

    .harshwal-nav-menu-list.harshwal-nav-active {
        left: 0;
    }

    .harshwal-nav-menu-item {
        width: 100%;
        height: auto;
        display: block;
    }

    .harshwal-nav-link {
        padding: 15px 20px;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid #f0f0f0;
        height: auto;
        font-size: 14px;
    }

    .harshwal-nav-link-dropdown::after {
        content: '+';
        font-size: 20px;
        font-weight: 300;
    }

    .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-link-dropdown::after {
        content: '−';
    }

    .harshwal-nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-dropdown {
        display: block;
        max-height: 500px;
    }

    .harshwal-nav-dropdown-item {
        padding: 12px 40px;
        border-bottom: 1px solid #e0e0e0;
    }

    .harshwal-nav-dropdown-item:last-child {
        border-bottom: none;
    }

    .harshwal-nav-dropdown-item:hover {
        padding-left: 45px;
    }

    .harshwal-nav-mobile-toggle {
        display: flex;
    }

    .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }

    .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .harshwal-nav-cta-btn {
        margin: 20px;
        display: block;
        text-align: center;
        width: calc(100% - 40px);
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-graphic {
        order: -1;
        margin-bottom: -20px;
    }

    .syologist-logo-container {
        width: 450px;
        height: 350px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .harshwal-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .syologist-logo-container {
        width: 90vw;
        max-width: 400px;
        height: 300px;
    }

    .partnership-header h2,
    .expect-header h2,
    .why-matters-content h2,
    .benefits-header h2,
    .why-choose-header h2 {
        font-size: 2rem;
    }

    .partnership-section,
    .expect-section,
    .why-matters,
    .benefits-section,
    .why-choose-section,
    .final-cta-section {
        padding: 60px 20px;
    }

    .harshwal-footer {
        padding: 3rem 0 1rem;
    }

    .harshwal-footer-content {
        padding: 0 1.5rem;
    }

    .harshwal-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .harshwal-footer-legal {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
        order: 1;
    }

    .harshwal-footer-copyright {
        order: 2;
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .syologist-logo-container {
        width: 95vw;
        max-width: 350px;
        height: 250px;
    }
}