:root {
    --recapp-red: #A11D26;
    --text-color: #333333;
    --background-light: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url(./images/wave_white.png);
    background-size: 100%;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    width: 25%;
    height: auto;
    transform: scale(1.5);
    transform-origin: center;
}

.swiss-flag {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: auto;
}

main {
    flex: 1;
    padding: 2rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 20px 50px 0 #00094e1a;
    border-radius: 3px;
    padding: 3rem;
}

.card-container a {
    color: var(--text-color);
    text-decoration: none;

}

.card-container a:hover .card-text-2 {
    text-decoration: underline;
}

.card-container a:hover .card-icon-container {
    background-color: #616161;
}

.card {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    gap: 48px;
}

.card-text-container{
    box-sizing: inherit;
}

.card-title {
    margin: 0;
    margin-top: 1.75rem;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.7;
}

.card-text-1, .card-text-2 {
    margin: 0;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
}

.card-text-2 {
    margin-bottom: 1.5rem;
}

.card-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px;
    background-color: rgb(189, 189, 189);
}

.material-icons {
    display: inline-block;
    font-size: 2rem !important;
    color: #fff;
}

h2 {
    color: var(--recapp-red);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.second-title {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 1rem;
    position: relative;
    margin-top: 2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: rgba(206,206,206,1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}