* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

nav {
    background-color: #f8f8f8;
    padding: 1rem 2rem;
    text-align: right;
}

nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #e56b6f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.title {
    font-size: 3rem;
    color: #e56b6f;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #6d6875;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

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

.image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta {
    text-align: center;
    padding: 2rem;
    background-color: #feeafa;
    border-radius: 20px;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #e56b6f;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.2s;
}

.button:hover {
    transform: scale(1.05);
}

/* About page styles */
.story-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    flex-direction: column;
}

.image {
    width: 100%;
    height: auto;
    max-width: 350px;
}