<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * BoldLedger - Main Stylesheet
 * Color Palette:
 * Midnight Teal: #003E47
 * Coral Blush: #FF6B6B
 * Cream White: #FDF8F4
 * Dusty Lilac: #D8C3D3
 * Golden Sand: #EFCB68
 */

/* ---------- Reset &amp; Base Styles ---------- */
:root {
    --color-primary: #003E47;     /* Midnight Teal */
    --color-accent: #FF6B6B;      /* Coral Blush */
    --color-light: #FDF8F4;       /* Cream White */
    --color-secondary: #D8C3D3;   /* Dusty Lilac */
    --color-tertiary: #EFCB68;    /* Golden Sand */
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-primary);
    background-color: var(--color-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ---------- Layout &amp; Container ---------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-tertiary);
    margin: 0.8rem auto 0;
}

/* ---------- Animation Classes ---------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ---------- Header &amp; Navigation ---------- */
.main-header {
    background-color: var(--color-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-light);
    border-radius: 3px;
    transition: transform 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 9px; }
.menu-icon span:nth-child(3) { top: 18px; }

.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-list li a {
    color: var(--color-light);
    font-weight: 500;
    padding: 0.5rem;
    transition: color var(--transition-speed) ease;
}

.nav-list li a:hover {
    color: var(--color-tertiary);
}

.cta-button a {
    background-color: var(--color-tertiary);
    color: var(--color-primary);
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.cta-button a:hover {
    background-color: var(--color-accent);
    color: var(--color-light);
    transform: translateY(-3px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    text-align: center;
}

.primary-btn {
    background-color: var(--color-tertiary);
    color: var(--color-primary);
}

.primary-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.secondary-btn {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.secondary-btn:hover {
    background-color: #00525d;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.accent-btn {
    background-color: var(--color-accent);
    color: var(--color-light);
}

.accent-btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* ---------- Hero Section ---------- */
.hero-section {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* ---------- About Section ---------- */
.about-section {
    background-color: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

/* ---------- Services Section ---------- */
.services-section {
    background-color: #f9f3ee;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    border-bottom: 4px solid var(--color-tertiary);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-title {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1rem 0;
}

/* ---------- Benefits Section ---------- */
.benefits-section {
    background-color: var(--color-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all var(--transition-speed) ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-tertiary);
    margin-bottom: 1rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    background-color: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.author-name {
    font-weight: 700;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background-color: var(--color-primary);
    color: var(--color-light);
    text-align: center;
    padding: 6rem 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ---------- Contact Form ---------- */
.contact-section {
    background-color: var(--color-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: var(--color-light);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-tertiary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    background-color: #f9f3ee;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--color-light);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    border-left: 4px solid var(--color-tertiary);
}

.faq-answer {
    background-color: #fff;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-item:target .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

/* ---------- Footer ---------- */
.main-footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 1rem;
}

.company-desc {
    max-width: 300px;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.5rem;
}

.footer-links h3, .footer-legal h3, .footer-contact h3 {
    margin-bottom: 1.2rem;
    color: var(--color-tertiary);
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a, .footer-legal a, .footer-contact a {
    color: var(--color-light);
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover, .footer-legal a:hover, .footer-contact a:hover {
    color: var(--color-tertiary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 62, 71, 0.95);
    color: var(--color-light);
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-icon {
    font-size: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin-bottom: 0;
}

.cookie-form {
    flex-shrink: 0;
}

/* ---------- Thank You Page ---------- */
.thank-you-page {
    text-align: center;
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--color-tertiary);
    margin-bottom: 2rem;
}

.thank-you-title {
    margin-bottom: 1.5rem;
}

/* ---------- Media Queries ---------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-grid, .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-primary);
        flex-direction: column;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed) ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .menu-toggle:checked ~ .nav-list {
        max-height: 300px;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .nav-list li {
        width: 100%;
        padding: 1rem;
    }
    
    .cta-button {
        margin-top: 0.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .section {
        padding: 2.5rem 0;
    }
} </pre></body></html>