
body {
    
    margin: 0;
    font-family: "Bodoni Moda", serif;
    background-color: #f4f4f4;
}

/* Header */
.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: #d9d9d9;
    border-bottom: 2px solid #333333;
}
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 60px;
}

.icons span {
    margin-left: 15px;
}

/* Hero  */
.hero {
    text-align: center;
    padding: 20px;
    background: white;
}

.hero img {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

.hero p {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

/* sections */
.section {
    padding: 30px 20px;
    text-align: center;
}

.section h2 {
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* backgrounds */
.light {
    background: #ffffff;
}

.dark {
    background: #333;
    color: white;
}

/* content layout */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content img {
    width: 400px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.content p {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.6;
}

/* Buttons */
button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    background: #444;
    color: white;
    border-radius: 20px;
}

.dark button {
    background: white;
    color: #333;
}
