body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #222;
}
header {
    background: #fff;
    color: #222;
    padding-bottom: 0;
    border-bottom: 1px solid #eee;
}
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.2rem 2rem 0.5rem 2rem;
    background: #fff;
}
.logo {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #e7b10a;
    margin-right: 2rem;
}
.nav-links {
    display: none;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2.5rem 0 1.5rem 0;
}
.hero img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e7b10a;
    margin-bottom: 1.2rem;
}
.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 0.7rem;
    color: #e7b10a;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #444;
}
main {
    padding: 1.5rem 1rem 0 1rem;
    max-width: 900px;
    margin: auto;
}
.section {
    margin-bottom: 2.5rem;
}
.section-title {
    color: #e7b10a;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.section-content {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
}
.section-content ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0 0;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.2rem;
}
.gallery img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cta-section {
    background: linear-gradient(135deg, #e7b10a 0%, #d4941e 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(231, 177, 10, 0.25);
    border: 2px solid #f5c84a;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.15), transparent);
    pointer-events: none;
}
.cta-section > * {
    position: relative;
    z-index: 1;
}
.cta-quote {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}
.cta-message {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    letter-spacing: 0.5px;
}
.cta-button {
    display: inline-block;
    background: #fff;
    color: #e7b10a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}
.cta-button:hover {
    background: #e7b10a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 177, 10, 0.4);
}
.cta-button:active {
    transform: translateY(-1px);
}
footer {
    text-align: center;
    padding: 1.2rem 0;
    background: #f8f8f8;
    color: #888;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 0.98rem;
}
@media (max-width: 700px) {
    nav {
        flex-direction: column;
        gap: 0.7rem;
        align-items: flex-start;
    }
    .gallery {
        justify-content: center;
    }
    .hero img {
        width: 120px;
        height: 120px;
    }
}
