body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 24px 0 16px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}
.logo {
    max-width: 140px;
    margin: 0 32px 0 32px;
    position: absolute;
    left: 32px;
    top: 24px;
}
.header-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.main-message {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #e85d04;
    margin: 0 0 18px 0;
    background: rgba(255,255,255,0.97);
    border-radius: 12px;
    padding: 18px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: block;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    line-height: 1.25;
}
.sub-message {
    font-size: 1.1rem;
    color: #4a6c7a;
    margin-bottom: 0;
    background: rgba(255,255,255,0.92);
    border-radius: 8px;
    padding: 6px 14px;
    display: inline-block;
}
@media (max-width: 700px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 10px 0;
    }
    .logo {
        position: static;
        margin: 0 0 10px 16px;
        max-width: 110px;
    }
    .header-content {
        max-width: 98vw;
        margin-left: 0;
    }
}
.carousel {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.carousel-images {
    display: flex;
    transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}
.carousel-images img {
    width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 380px;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    font-size: 2rem;
    color: #1a3a4f;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.2s;
}
.carousel-btn:hover {
    background: #e0eaf1;
}
.carousel-btn.left {
    left: 18px;
}
.carousel-btn.right {
    right: 18px;
}
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b3c7d6;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-dot.active {
    background: #1a3a4f;
}
@media (max-width: 1000px) {
    .carousel {
        max-width: 98vw;
    }
    .carousel-images img {
        height: 220px;
    }
    .header-content, .main-message {
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .main-message {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    .carousel-images img {
        height: 140px;
    }
}
footer {
    margin-top: 60px;
    text-align: center;
    color: #7a8b99;
    font-size: 0.95rem;
    padding-bottom: 18px;
}
