/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f4f0;
}

/* Header Styles */
header {
    background: #5a7465;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.header-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-fallback {
    display: none;
}

header nav {
    margin-top: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95em;
    transition: opacity 0.3s;
}

header nav a:hover {
    opacity: 0.8;
}

/* Footer Styles */

footer {
    background: #2b4236;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 0px;
}

footer a {
    color: #98b4a5;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

/* Container and Content Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Typography */
h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1B2838;
    font-size: 2.5em;
    font-weight: normal;
    margin-bottom: 10px;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1B2838;
    font-size: 1.6em;
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5a7465;
}

h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1B2838;
    font-size: 1.4em;
    font-weight: normal;
    margin-top: 25px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
}

a {
    color: #5a7465;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.last-updated {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 30px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #5a7465;
    color: white;
    padding: 18px 45px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(90, 116, 101, 0.3);
}

.cta-button:hover {
    background-color: #2b4236;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 116, 101, 0.4);
}

/* Special Boxes */
.highlight-box {
    background: #d0ddd6;
    border: 2px solid #5a7465;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.important-notice {
    background: #f7f4f0;
    border-left: 4px solid #5a7465;
    padding: 20px;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    header nav a {
        display: block;
        margin: 10px 0;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2em;
    }
}
