@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@400;600&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    font-style: italic;
    color: #666;
    font-size: 1.1em;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-size: 1.8em;
    margin-top: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.4em;
    margin-top: 30px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.lead {
    font-size: 1.2em;
    font-weight: 600;
    color: #444;
    margin-bottom: 30px;
    border-left: 4px solid #333;
    padding-left: 20px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.cta {
    background-color: #333;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #555;
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4a6bdf 0%, #2a4bb9 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    text-align: center;
    animation: pulse 2s infinite;
}

.floating-cta p {
    margin-bottom: 10px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #2a4bb9;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

footer {
    margin-top: 50px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    h1 {
        font-size: 2em;
    }
}
