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

body {
    font-family: 'Georgia', serif;
    /* Serif fits a memorial theme well */
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

header h1 {
    margin-bottom: 1rem;
    color: #2c3e50;
}



.photo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.main-photo {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main.container {
    padding: 4rem 20px 2rem 20px;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

h2 {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

section p {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #2c3e50;
    color: #fff;
    border: 2px solid #2c3e50;
}

.btn-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: #777;
    border-top: 1px solid #eee;
}