/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hand-drawn style variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #4ECDC4;
    --accent-color: #45B7D1;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --text-color: #34495E;
    --bg-color: #FEFEFE;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --danger-color: #E74C3C;
    
    /* Hand-drawn shadows and borders */
    --hand-shadow: 3px 3px 8px rgba(0,0,0,0.15);
    --hand-border: 2px solid var(--dark-color);
    --hand-radius: 15px;
}

/* Hand-drawn font stack */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Kalam:wght@300;400;700&display=swap');

body {
    font-family: 'Kalam', cursive;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
}

/* Hand-drawn elements base */
.hand-drawn {
    position: relative;
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid currentColor;
    border-radius: inherit;
    pointer-events: none;
    transform: rotate(-0.5deg);
}

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

/* Buttons with hand-drawn style */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    font-family: 'Caveat', cursive;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
    box-shadow: var(--hand-shadow);
    position: relative;
}

.btn:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    background: var(--accent-color);
}

.btn-secondary {
    background: var(--secondary-color);
    transform: rotate(1deg);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    transform: rotate(0.5deg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 20px;
    transform: rotate(-0.8deg);
}

/* Header and Navigation */
.header {
    background: white;
    border-bottom: 3px solid var(--dark-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: rotate(-0.2deg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px;
    width: auto;
}

.brand-text {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    transform: rotate(-2deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    transform: rotate(0.5deg);
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: rotate(-0.5deg) scale(1.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    transform: rotate(-1deg);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transform: rotate(-2deg);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    transform: rotate(1deg);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-color) 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0h100v100H0z' fill='%23ffffff' opacity='0.03'/%3E%3Cpath d='M20 20c10-5 20 5 30 0s20-5 30 0 20 5 30 0' stroke='%23000' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Caveat', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    transform: rotate(-1.5deg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
    transform: rotate(0.5deg);
}

.hero-image {
    width: 100%;
    height: auto;
    transform: rotate(2deg);
    filter: drop-shadow(var(--hand-shadow));
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    transform: rotate(-1deg);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    transform: rotate(0.3deg);
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transform: rotate(-0.8deg);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 16px;
    position: relative;
    transform: rotate(0.2deg);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    transform: rotate(-1deg);
    box-shadow: var(--hand-shadow);
}

.stat-number {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transform: rotate(1deg);
}

.stat-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-color);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    text-align: center;
    transform: rotate(-0.5deg);
    box-shadow: var(--hand-shadow);
    transition: all 0.3s ease;
}

.service-card:nth-child(2) {
    transform: rotate(0.8deg);
}

.service-card:nth-child(3) {
    transform: rotate(-1.2deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transform: rotate(2deg);
}

.service-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transform: rotate(-0.5deg);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    transform: rotate(-10deg);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: var(--light-color);
    padding: 30px 25px;
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    position: relative;
    transform: rotate(0.8deg);
    box-shadow: var(--hand-shadow);
}

.testimonial-card:nth-child(2) {
    transform: rotate(-1deg);
}

.testimonial-card:nth-child(3) {
    transform: rotate(1.2deg);
}

.testimonial-card:nth-child(4) {
    transform: rotate(-0.6deg);
}

.testimonial-rating {
    color: var(--warning-color);
    font-size: 18px;
    margin-bottom: 15px;
    transform: rotate(-1deg);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: 10px;
    left: 15px;
    transform: rotate(-15deg);
}

.testimonial-author strong {
    color: var(--primary-color);
    font-family: 'Caveat', cursive;
    font-size: 18px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    margin-top: 5px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    padding: 30px 25px;
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    transform: rotate(-0.5deg);
    box-shadow: var(--hand-shadow);
    transition: all 0.3s ease;
}

.blog-card:nth-child(2) {
    transform: rotate(0.8deg);
}

.blog-card:nth-child(3) {
    transform: rotate(-1.1deg);
}

.blog-card:nth-child(4) {
    transform: rotate(0.6deg);
}

.blog-card:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 6px 6px 15px rgba(0,0,0,0.12);
}

.blog-card h3 {
    margin-bottom: 10px;
}

.blog-card h3 a {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    transform: rotate(-0.3deg);
    display: block;
    line-height: 1.3;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transform: rotate(0.5deg);
    display: inline-block;
}

.read-more:hover {
    color: var(--accent-color);
    transform: rotate(-0.5deg);
}

/* Blog Articles */
.blog-article {
    padding: 120px 0 80px;
    background: white;
}

.blog-article.hidden {
    display: none;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    transform: rotate(-0.5deg);
}

.back-link:hover {
    color: var(--accent-color);
    transform: rotate(0.5deg);
}

.article-meta {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 16px;
}

.article-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
    transform: rotate(-0.8deg);
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    transform: rotate(-1deg);
}

.newsletter p {
    color: white;
    font-size: 18px;
    margin-bottom: 40px;
    transform: rotate(0.3deg);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    font-family: 'Kalam', cursive;
    font-size: 16px;
    background: white;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    transform: rotate(0deg);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.checkbox-group {
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-label a {
    color: white;
    text-decoration: underline;
}

/* Legal Section */
.legal {
    padding: 40px 0;
    background: var(--dark-color);
    text-align: center;
}

.legal h2 {
    font-family: 'Caveat', cursive;
    color: white;
    margin-bottom: 20px;
    transform: rotate(-0.5deg);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--light-color);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--light-color);
    border-radius: var(--hand-radius);
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

.legal-link:hover {
    background: var(--light-color);
    color: var(--dark-color);
    transform: rotate(-0.5deg);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    transform: rotate(-0.8deg);
}

.footer-brand h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transform: rotate(-1deg);
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
    transform: rotate(0.2deg);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: rotate(-0.2deg);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: rotate(2deg) scale(1.1);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 2px solid var(--light-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 14px;
    transform: rotate(0.3deg);
    display: inline-block;
}

.footer-legal a:hover {
    color: var(--secondary-color);
    transform: rotate(-0.3deg);
}

.copyright {
    font-size: 14px;
    color: var(--light-color);
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: rotate(-0.5deg);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    margin: 0;
    font-size: 14px;
    padding: 8px 16px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: rotate(-0.5deg);
    box-shadow: var(--hand-shadow);
}

.legal-modal {
    max-width: 800px;
}

.close {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transform: rotate(15deg);
}

.close:hover {
    color: var(--primary-color);
    transform: rotate(-15deg);
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    background: var(--light-color);
    border-radius: var(--hand-radius);
    transform: rotate(0.3deg);
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 5px;
    transform: scale(1.2);
}

.cookie-category span {
    font-size: 14px;
    color: var(--text-color);
}

.legal-content h3 {
    font-family: 'Caveat', cursive;
    color: var(--primary-color);
    margin: 25px 0 15px;
    transform: rotate(-0.5deg);
}

.legal-content h4 {
    color: var(--dark-color);
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    /* background: var(--light-color); */
    padding: 20px;
    border-radius: var(--hand-radius);
    margin: 20px 0;
    transform: rotate(0.5deg);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background: var(--light-color);
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
    transform: rotate(-2deg);
}

.thank-you-title {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
    transform: rotate(1deg);
}

.thank-you-message {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--text-color);
}

.thank-you-info {
    background: white;
    padding: 30px;
    border: 3px solid var(--dark-color);
    border-radius: var(--hand-radius);
    margin-bottom: 40px;
    transform: rotate(-0.5deg);
    box-shadow: var(--hand-shadow);
}

.thank-you-info h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transform: rotate(0.5deg);
}

.next-steps {
    list-style: none;
    text-align: left;
}

.next-steps li {
    padding: 8px 0;
    font-size: 16px;
    transform: rotate(0.2deg);
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-help {
    padding: 20px;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: var(--hand-radius);
    transform: rotate(0.8deg);
}

.contact-help a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        border-bottom: 3px solid var(--dark-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        transform: rotate(0deg);
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .modal {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 20pt 0;
    }
}
