body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #e9e3d5; /* Shifts the background to a slightly richer, warm artistic cream */
    color: #333;
    text-align: center;
}

header {
    background: #1e3f20;
    color: white;
    padding: 50px 20px;
}

header h1 {
    margin: 0 0 10px 0;
}

header p {
    margin: 0;
    font-size: 1.1em;
}

.content {
    padding: 50px 20px;
    max-width: 680px;
    margin: 0 auto;
}

.galleries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #1e3f20;
}

.card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
    height: auto;
    display: block;
}

.card h3 {
    margin-top: 0;
    color: #1e3f20;
}

.card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
}

.commission-section {
    background: #fff;
    padding: 60px 20px 80px 20px;
    margin-top: 40px;
    border-top: 2px solid #e6dec5;
    border-bottom: 6px solid #1e3f20;
}

.commission-box {
    max-width: 600px;
    margin: 30px auto 0 auto;
    background: #f9f6f0;
    padding: 35px 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.commission-box h3 {
    color: #1e3f20;
    margin-top: 0;
}

.commission-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: #1e3f20;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.btn:hover {
    background: #2c542f;
}
