body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9e5c9;
}

.header {
    text-align: center;
    padding: 40px;
    background: linear-gradient(45deg, #f3b95f, #e8843c);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header h1 {
    font-family: 'Lobster', cursive;
    font-size: 3.5em;
    font-weight: normal;
    margin-bottom: 10px;
}

.header h2 {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.8em;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.text-section {
    padding: 20px;
    margin: 15px 0;
    background-color: #fff8f0;
    border-radius: 8px;
    border-left: 4px solid #e8843c;
}

.image-section {
    width: 100%;
    height: 250px;
    margin: 20px 0;
    background: linear-gradient(135deg, #f5d6a7, #f3b95f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #866132;
    font-style: italic;
}

.join-button {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 15px;
    background-color: #e8843c;
    color: white;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.join-button:hover {
    transform: scale(1.05);
    background-color: #f3b95f;
}

h3 {
    color: #e8843c;
    margin-top: 30px;
    border-bottom: 2px solid #f3b95f;
    padding-bottom: 10px;
}
