* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    /*background-color: #F7E7CE;*/ 
    display: flex;
    flex-direction: column;
}

header {
    color: #30D5C8;
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 64px;
    font-size: 16px;
    position: relative;
}

header h1 {
    text-transform: uppercase;
    font-size: 1.7em;
    letter-spacing: 1px;
}

.menu {
    display: flex;
}

.menu button {
    display: none;
}

.menu-list {
    list-style: none;
    display: flex;
}

.menu-list li {
    display: inline-block;
    margin-left: 32px;
    font-size: 1.1em;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-list li.active,
.menu-list li:hover {
    color: #30D5C8;
}

.main {
    align-items: center;
    min-height: 100vh;
}

.second{
    align-items: center;
    background-color: #30D5C8;
    min-height: 100vh;
}

.second *{
    color: white !important;
}

.card-title {
    color: #30D5C8!important;
    text-align: center;
}

.card-text{
    color: #9fb5cc!important;
    text-align: center;
}

.card {
    min-height: 440px;
    border: none;
    margin-bottom: 50px;
}

.card-body{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.card-img-top{
    height: 350px;
    object-fit: contain;
}

.second .title{
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

.second .subtitle{
    text-align: center;
}

.right img {
    width: 100%;
}

.left {
    padding: 40px 0px 40px 40px;
}

.right {
    padding: 40px 48px;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

.title {
    color: #30D5C8;
    font-size: 3.2em;
    width: 50%;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 48px;
}

.subtitle {
    color: #30D5C8;
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.msg {
    color: #9fb5cc;
    font-size: 1.1em;
    letter-spacing: 0.7px;
    line-height: 32px;
    margin-bottom: 48px;
}

button.cta:first-of-type{
    margin-right: 10px;
}

button.cta {
    border: none;
    outline: none;
    background-color: #30D5C8;
    color: #fff;
    padding: 18px 32px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1),
    0 15px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: opacity 0.9;
    display: flex;
    align-items: center;
}

button.cta:hover {
    opacity: 0.9;
}

.navbar{
    padding-left: 50px;
    padding-right: 50px;
}

.nav-brand{
    width: 150px!important;
}

.nav-item{
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

.nav-item:nth-child(1), .nav-item:nth-child(2){
    margin-right: 50px;
}

header{
    margin-bottom: -80px;
}

/*  -----    RESPONSIVENESS    -----  */

@media (max-width:800px) {
    header,
    .left,
    .right {
        padding-left: 40px;
        padding-right: 40px;
    }

    .nav-brand{
        width: 75px;
    }

    header{
        margin-bottom: 0px;
    }
}

@media (max-width: 650px) {

    .navbar{
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .nav-brand{
        width: 100px!important;
    }

    .main {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
        max-width: 100%;
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .left {
        font-size: 0.8em;
    }

    .left * {
        width: 95%;
        text-align: center;
    }

    button.cta {
        max-width: 50%;
    }

    .ctaprimary{
        max-width: 100% !important;
    }

    .right img {
        width: 80%;
    }

    /* Nav Menu Responsiveness */

    .menu button {
        display: block;
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        color: #ff0a54;
        outline: none;
        font-size: 1.7em;
        cursor: pointer;
        z-index: 2;
    }

    .menu i.fa-times,
    .menu.opened i.fa-bars {
        display: none;
    }

    .menu.opened i.fa-times,
    .menu i.fa-bars {
        display: block;
        animation: enter 0.8s;
    }

    header{
        margin-bottom: 0px;
    }

    @keyframes enter {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .menu-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100%;
        background-color: #ff0a54;
        color: #fff;
        padding: 46px;
        flex-direction: column;
        align-items: flex-end;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.5s;
    }

    .menu-list li {
        font-size: 1.7em;
        margin: 32px 0px;
    }

    .menu.opened .menu-list {
        transform: translateX(0);
    }

    .menu.opened button {
        color: #fff;
    }

    .nav-item{
        text-decoration: none;
        color: black;
        font-size: 12px;
    }
    
    .nav-item:nth-child(1){
        margin-right: 20px;
    }
}

/* Legal Footer Styles */
.legal-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 48px 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 120px;
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.footer-tagline {
    color: #30D5C8;
    font-size: 0.95em;
    font-style: italic;
    margin: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: #30D5C8;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #30D5C8;
}

.footer-contact p {
    color: #b8b8b8;
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 24px 40px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9em;
}

/* Footer Responsive Design */
@media (max-width: 800px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 8px auto;
    }
    
    .legal-footer {
    }
}

@media (max-width: 650px) {
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
}