body {
    margin: 0;
font-family: 'Poppins', sans-serif;   
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
    background: url('background.webp') no-repeat center center / cover;
}

/* Conteneur global */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
}

/* Carte */
.card {
    background: #fff url('wave-bottom.jpg') no-repeat bottom center;
    background-size: 100% auto;

    width: 450px;
    min-height: 280px;
    padding: 40px 40px 130px;

    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Logo */
.logo {
    width: 320px;
    margin-bottom: -10px;
}

/* Titre */
h1 {
    font-size: 32px;
    color: #2d3e50;
    margin-bottom: 20px;
	font-weight : 600;
}

/* Texte */
p {
    color: #2d3e50;
    font-size: 16px;
    line-height: 1.5;
	font-weight: 400;
}

.address {
    font-size: 16px;
    color: #2d3e50;
    margin-bottom: 20px;
}

.address strong {
    font-weight: 500;
    color: #2d3e50;
}
/* Email */
.email a {
    color: #ff4d2d;
    font-weight: bold;
    text-decoration: none;
}

.email a:hover {
    text-decoration: underline;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        justify-content: center;
    }

    .card {
        width: 100%;
        max-width: 360px;
        padding: 32px 24px 80px;
        text-align: center;
    }

    .logo {
        width: 180px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}