body {
    font-family: 'Georgia', serif; 
    margin: 0;
    padding: 0;
    background-color: #fcf8f6;
    color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}
.card {
    max-width: 550px;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}
h1 {
    color: #B565A7;
    font-size: 2.8em;
    margin-bottom: 5px;
}
h2 {
    color: #777;
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 20px; /* Zmniejszono margines, bo zaraz będzie zdjęcie */
    border-bottom: 2px dotted #B565A7;
    padding-bottom: 10px;
}
p {
    line-height: 1.5;
    margin-bottom: 15px;
}
.date-section {
    margin: 20px 0;
    border: 2px solid #E0BBE4;
    padding: 15px 10px;
    display: inline-block;
}
.date-header {
    font-weight: bold;
    font-size: 1.1em;
    color: #777;
    margin-bottom: 5px;
}
.large-date {
    font-size: 2.5em;
    font-weight: 900;
    color: #B565A7;
    letter-spacing: 2px;
    display: block;
}
.contact-info {
    font-size: 1.1em;
    font-weight: bold;
    color: #444;
    margin-top: 30px;
}
a {
    color: #B565A7;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Delikatny cień na zdjęciu */
}