:root {

    --primary:#6d5966;
    --secondary:#f5efeb;
    --text:#333;
}


* {
    box-sizing:border-box;
}


html {
    scroll-behavior:smooth;
}


body {

    margin:0;
    font-family:
    "Helvetica Neue",
    Arial,
    sans-serif;

    color:var(--text);
    line-height:1.7;
}



.container {
    width:min(1100px,90%);
    margin:auto;
}



.header {
    position:sticky;
    top:0;
    background:white;
    z-index:100;
    border-bottom:1px solid #eee;
}



.nav {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
}



.logo {
    color:var(--primary);
    text-decoration:none;
    font-size:1.3rem;
    font-weight:bold;
}



.navigation a {
    margin-left:30px;
    text-decoration:none;
    color:#333;
}



.menu-toggle {
    display:none;
    background:none;
    border:0;
    font-size:25px;
}



.hero {
    min-height:500px;
    display:flex;
    align-items:center;
    text-align:center;

    background:
    linear-gradient(
    rgba(0,0,0,.25),
    rgba(0,0,0,.25)
    ),
    url("images/hero.jpg");

    background-size:cover;
    background-position:center;
}



.hero-content {
    color:white;
}



.hero h1 {
    margin-bottom:20px;
}



.hero p {
    max-width:700px;
    margin:0 auto 40px;
    font-size:1.2rem;
}



.button {
    display:inline-block;
    padding:14px 35px;
    background:#ba11b7;
    color:white;
    text-decoration:none;
    border-radius:30px;
}



.section {
    padding:80px 0;
}



.background {
    background:#094180;
    color: white;
}


.background a {
    color: #ba11b7;
}


h2 {
    text-align:center;
    font-size:2.2rem;
    margin-bottom:40px;
}



.cards {
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
}



.card,
.session-box {
    background:white;
    padding:30px;
    border-radius:10px;
}



.session-box {
    text-align:center;
    margin-top:40px;
}


.custom-img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .custom-img {
        width: 50%;
    }
}



footer {
    padding:30px 0;
    text-align:center;
    background:#333;
    color:white;
}



@media(max-width:700px){


.navigation {
    display:none;
    position:absolute;
    top:70px;
    left:0;
    right:0;
    background:white;
    padding:20px;
}


.navigation a {
    display:block;
    margin:15px 0;
}


.menu-toggle {
    display:block;
}


}