/* General Reset and Font Import */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #fdfdff; /* Soft white background */
    color: #333333; /* Deep charcoal text */
    line-height: 1.6;
}

/* Header & Navigation Styling */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fdfdff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #001f3f; /* Deep Navy Accent */
}

.main-nav a {
    text-decoration: none;
    color: #333333;
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #D4AF37; /* Gold Accent on hover */
}

/* Hero Section Styling */
.hero-section {
    background-color: #001f3f; /* Dark background for contrast */
    color: #fdfdff;
    padding: 100px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60vh;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #D4AF37; /* Gold Accent */
    color: #001f3f;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e7c04d;
}

/* Content Section Styling */
.content-section {
    padding: 60px 5%;
    text-align: center;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #001f3f;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    margin-bottom: 15px;
}

/* Footer Styling */
.site-footer {
    background-color: #eee;
    padding: 30px 5%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    margin: 0 5px;
}