* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: white;
}

header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand,
.nav-actions-container {
    flex: 1;
}

.nav-actions-container {
    display: flex;
    justify-content: flex-end;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 20px
}

.nav-brand a img {
    height: 30px;
    width: auto;
}

.desktop-nav {
    display: flex;
}

.nav-links ul,
.nav-actions ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links ul li a,
.nav-actions ul li a {
    color: #37352f;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: background-color 0.3s ease-in-out;
    border-radius: 5px;
}

.nav-links ul li a:hover,
.nav-actions ul li a:hover {
    background-color: #f0f0f0;
}

#Get-Notion {
    background-color: #0075DE;
    color: white;
}

#Get-Notion:hover {
    background-color: #005cb3;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
}

.mobile-nav {
    display: none;
    background-color: white;
    padding: 10px 20px 20px;
    border-top: 1px solid #eee;
}

.mobile-nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #37352f;
    font-weight: 500;
    border-radius: 5px;
}

.mobile-nav ul li a:hover {
    background-color: #f0f0f0;
}

.mobile-nav #Get-Notion {
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 1050px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        flex: 0;
    }
}

.Page1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 90px auto;
}

.Sub-Heading1 p {
    font-size: 18px;
    max-width: 300px;
    margin-bottom: 10px;
    text-align: center;
}

.Heading1 h2 {
    font-size: 55px;
    max-width: 500px;
    font-weight: 750;
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
}

.Sub-Heading2 p {
    font-size: 18px;
    max-width: 400px;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 10px;
}

.Button1 {
    background-color: black;
    margin: 10px auto;
    height: auto;
    width: 170px;
    padding: 15px 10px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.Button1 a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.Button1:hover {
    background-color: rgb(48, 48, 48);
}

@media only screen and (max-width: 600px) {
    .Page1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 90px auto;
    }

    .Sub-Heading1 p {
        font-size: 15px;
        max-width: 300px;
        margin-bottom: 10px;
        text-align: center;
    }

    .Heading1 h2 {
        font-size: 35px;
        max-width: 300px;
        font-weight: 750;
        text-align: center;
        line-height: 1;
        margin-bottom: 10px;
    }

    .Sub-Heading2 p {
        font-size: 13px;
        max-width: 300px;
        margin-bottom: 10px;
        text-align: center;
        margin-top: 10px;
    }

    .Button1 {
        background-color: black;
        margin: 10px auto;
        height: auto;
        width: 150px;
        padding: 10px 5px;
        text-align: center;
        border-radius: 10px;
        cursor: pointer;
    }

    .Button1 a {
        text-decoration: none;
        color: white;
        font-size: 13px;
        font-weight: 600;
    }
}

.Sub-Heading3 {
    font-size: 12px;
    font-weight: 500;
    margin-top: 40px;
}

.Company-Logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 20px auto;
}

.Comp1,
.Comp2 {
    display: flex;
    gap: 40px;
}

#Figma,
#Vercel,
#Match,
#Open-AI {
    height: 25px;
    width: auto;
}

#Volvo {
    height: 15px;
    width: auto;
}

#Ramp {
    height: 30px;
    width: auto;
}

@media only screen and (min-width: 520px) and (max-width: 980px) {
    .Company-Logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 20px auto;
    }

    .Comp1,
    .Comp2 {
        display: flex;
        gap: 40px;
    }
}

@media only screen and (max-width: 520px) {
    .Company-Logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 20px auto;
    }

    .Comp1,
    .Comp2 {
        display: flex;
        gap: 30px;
    }

    #Figma,
    #Vercel,
    #Match,
    #Open-AI {
        height: 13px;
        width: auto;
    }

    #Volvo {
        height: 8px;
        width: auto;
    }

    #Ramp {
        height: 20px;
        width: auto;
    }
}

.feature-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    background-color: #f9fafb;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: #9ca3af;
}

.feature-box.active {
    border-color: black;
    background-color: white;
}

.feature-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.image-display-area {
    margin-top: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    overflow: hidden;
}

.image-display-area img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.4s ease-in-out;
}

@media (min-width: 768px) {
    .feature-showcase {
        padding: 0px 50px;
    }
}

@media (min-width: 895px) and (max-width: 1160px) {
    .feature-showcase {
        padding: 0 90px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
    .feature-showcase {
        padding: 0 90px;
    }
}

@media only screen and (max-width: 600px) {
    .feature-showcase {
        padding: 20px;
    }
}

.Multiple-Box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.Box2,
.Box3,
.Box4 {
    width: 340px;
    height: 315px;
    background-color: #f6f5f4;
    border-radius: 10px;
    padding: 20px 5px 5px 20px;
}

.Sub-Heading4,
.Sub-Heading5,
.Sub-Heading6 {
    max-width: 300px;
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 700;
}

.Box2 img,
.Box3 img,
.Box4 img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1080px) and (min-width: 800px) {
    .Multiple-Box {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .Box2,
    .Box3,
    .Box4 {
        width: 200px;
        height: 200px;
        background-color: #f6f5f4;
        border-radius: 10px;
        padding: 20px 5px 5px 20px;
    }

    .Sub-Heading4,
    .Sub-Heading5,
    .Sub-Heading6 {
        max-width: 300px;
        margin-bottom: 20px;
        font-size: 15px;
        font-weight: 700;
    }
}

@media only screen and (max-width: 800px) and (min-width: 300px) {
    .Multiple-Box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .Box2,
    .Box3,
    .Box4 {
        width: 90%;
        height: auto;
        background-color: #f6f5f4;
        border-radius: 10px;
        padding: 20px 5px 5px 20px;
    }

    .Sub-Heading4,
    .Sub-Heading5,
    .Sub-Heading6 {
        max-width: 300px;
        margin-bottom: 20px;
        font-size: 15px;
        font-weight: 700;
    }
}

.site-footer {
    background-color: #ffffff;
    padding: 45px 0 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: #26272b;
    text-align: center;
    border-top: 1px solid #e9e9e9;
    margin-top: 100px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 8px;
    border-radius: 100%;
    background-color: #f0f0f0;
    font-size: 20px;
    color: #555555;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover.facebook {
    background-color: #1877F2;
    color: #fff;
}

.social-icons a:hover.x-twitter {
    background-color: #000000;
    color: #fff;
}

.social-icons a:hover.instagram {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}

.social-icons a:hover.youtube {
    background-color: #FF0000;
    color: #fff;
}

.social-icons a:hover.linkedin {
    background-color: #0A66C2;
    color: #fff;
}

.copyright-text {
    margin: 0;
}