body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
    color: #222;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: #3949ab;
    color: #fff;
    padding: 20px 0;
}
.logo {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    gap: 24px;
}
nav a {
    color: #ffd600;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #fff;
}
.hero {
    background: linear-gradient(120deg, #3949ab 0%, #6f86d6 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0 40px 0;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 24px;
}
.cta-button {
    background: #ffd600;
    color: #3949ab;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
.cta-button:hover {
    background: #fff176;
}
.about, .highlights, .photos-section, .contact {
    padding: 48px 0 32px 0;
}
.about h2, .highlights h2, .photos-section h2, .contact h2 {
    color: #3949ab;
    margin-bottom: 18px;
    font-size: 2rem;
}
.about p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}
.highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.highlight-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(57,73,171,0.08);
    padding: 24px;
    width: 210px;
    text-align: center;
    margin-bottom: 16px;
}
.highlight-card h3 {
    color: #3949ab;
    margin-bottom: 8px;
}
.highlight-card p {
    margin: 6px 0;
    color: #222;
}
.photos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 24px;
}
.photo-thumb {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(57,73,171,0.12);
    border: 2px solid #ffd600;
    background: #fff;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
}
.contact input, .contact textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}
.contact textarea {
    min-height: 80px;
    resize: vertical;
}
.contact button {
    background: #3949ab;
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
.contact button:hover {
    background: #5c6bc0;
}
footer {
    background: #3949ab;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 32px;
    font-size: 1rem;
    letter-spacing: 1px;
}