body {
    font-family: Georgia, serif;
    margin: 0;
    background: #FFFFFF;
    color: #0E294B;
}

header {
    background: #0E294B;
    color: #FFFFFF;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 16px;
    font-weight: bold;
    transition: color 0.2s;
}
nav a:hover {
    color: #D9B358;
}

.logo {
    height: 60px;
}

.hero,
.booking-section {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
}

.tagline {
    color: #D9B358;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 24px;
    font-weight: bold;
}

.cta-button,
.booking-button {
    background: #D9B358;
    color: #0E294B;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    margin: 18px 0;
    font-family: Georgia, serif;
    font-weight: bold;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover,
.booking-button:hover {
    background: #B89C4B;
}

.welcome-message {
    margin-top: 28px;
    font-size: 1.2em;
    color: #0E294B;
}

.main-content,
.about-main,
.services {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background: #FFFFFF;
}

.services {
    text-align: center;
    background: #F8F8F8;
    padding: 60px 20px;
}

.services h2,
.about-section h2 {
    color: #D9B358;
    font-size: 1.35em;
    margin-bottom: 18px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 520px;
    font-size: 1.1em;
}

.service-list li {
    margin: 20px 0;
    position: relative;
    padding-left: 36px;
    color: #0E294B;
}
.service-list li::before {
    content: "❤";
    position: absolute;
    left: 0;
    color: #D62D2D;
    font-size: 1.6em;
    top: -7px;
}

.service-block {
    background: #F8F8F8;
    margin: 36px 0;
    padding: 30px 26px;
    border-radius: 8px;
    box-shadow: 0 0 8px #ddd2;
}

.service-block h3 {
    color: #D62D2D;
    margin-bottom: 10px;
    font-size: 1.18em;
}

.why-choose {
    margin: 40px 0 0 0;
    padding: 20px 0 0 0;
}

.why-choose ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-choose li::before,
.about-values ul li::before {
    content: '• ';
    color: #D62D2D;
}

.about-main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background: #FFFFFF;
}

.about-section {
    margin-bottom: 40px;
}

h1, h2, h3 {
    color: #0E294B;
    font-family: Georgia, serif;
    margin-top: 28px;
}

h1 {
    font-size: 2em;
}

.about-logo {
    height: 72px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.nav-cta {
    background: #D9B358;
    color: #0E294B !important;
    padding: 9px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 10px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    display: inline-block;
    border: none;
    position: relative;
    top: -2px;
}
.nav-cta:hover {
    background: #B89C4B;
    color: #fff !important;
}


footer {
    background: #0E294B;
    color: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
    font-size: 1em;
    margin-top: 60px;
}

footer a {
    color: #FFFFFF;
    text-decoration: underline;
}
footer a:hover {
    color: #D9B358;
}
