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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Hand-drawn style variables */
:root {
    --primary-color: #2c5282;
    --secondary-color: #ed8936;
    --accent-color: #38a169;
    --text-color: #2d3748;
    --bg-color: #fefefe;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --hand-drawn-filter: url(#roughPaper);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

/* Hand-drawn elements */
.hand-drawn {
    position: relative;
    background: var(--bg-color);
    border: 3px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.hand-drawn:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 6px 12px var(--shadow-color);
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: transparent;
    border: 2px dashed var(--secondary-color);
    border-radius: 18px;
    opacity: 0.3;
    z-index: -1;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-emergency {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid;
    position: relative;
    transform: rotate(-1deg);
    font-family: 'Georgia', serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 4px 4px 0 var(--secondary-color);
}

.btn-primary:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 6px 6px 0 var(--secondary-color);
    background: #3a5998;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 4px 4px 0 var(--primary-color);
}

.btn-secondary:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 6px 6px 0 var(--primary-color);
    background: #f6a855;
}

.btn-emergency {
    background: #e53e3e;
    color: white;
    border-color: #e53e3e;
    box-shadow: 4px 4px 0 #fed7d7;
}

.btn-emergency:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 6px 6px 0 #fed7d7;
    background: #f56565;
}

/* Header */
.header {
    background: var(--bg-color);
    padding: 1rem 0;
    border-bottom: 3px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.navbar {
    position: relative;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transform: rotate(-1deg);
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.nav-link:hover, .nav-link.active {
    background: var(--secondary-color);
    color: white;
    transform: rotate(0deg);
    box-shadow: 2px 2px 0 var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    transform: rotate(-2deg);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
    text-shadow: 2px 2px 0 var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.8;
}

.hero-image {
    text-align: center;
    transform: rotate(2deg);
}

.banner-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(4px 4px 8px var(--shadow-color));
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(2px 2px 4px var(--shadow-color));
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--bg-color);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:nth-child(even) {
    transform: rotate(1deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #f7fafc 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-image {
    text-align: center;
    transform: rotate(-2deg);
}

.about-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(4px 4px 8px var(--shadow-color));
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--bg-color);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:nth-child(even) {
    transform: rotate(-0.5deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--accent-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
}

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

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Blog Section */
.blog {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.blog-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--accent-color);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: float 20s infinite linear;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.newsletter-content p {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 3px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    font-family: Georgia, serif;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    transform: rotate(0deg);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.2);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--bg-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow-color);
    border-color: var(--secondary-color);
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: rotate(0deg);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    z-index: 1;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transform: rotate(-0.5deg);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2) rotate(10deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--secondary-color);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px var(--shadow-color);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-content p {
    flex: 1;
    color: var(--text-color);
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

.btn-accept-all {
    background: var(--primary-color) !important;
    color: white !important;
}

.btn-accept-all:hover {
    background: var(--secondary-color) !important;
}

.cookie-buttons button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: #f9f9f9;
}

.cookie-category h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-category p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-save, .btn-cancel {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

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

.btn-save:hover {
    background: var(--secondary-color);
}

.btn-cancel:hover {
    background: var(--primary-color);
    color: white;
}

/* About Page Styles */
.about-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-text h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.about-hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-hero-image {
    text-align: center;
    transform: rotate(2deg);
}

.about-hero-img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

.company-story {
    padding: 4rem 0;
    background: var(--bg-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-0.5deg);
}

.story-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    text-align: center;
    transform: rotate(-1deg);
}

.story-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(4px 4px 8px var(--shadow-color));
}

.mission {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:nth-child(2) {
    transform: rotate(0.5deg);
}

.mission-card:nth-child(3) {
    transform: rotate(-0.8deg);
}

.mission-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--accent-color);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.team {
    padding: 4rem 0;
    background: var(--bg-color);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:nth-child(even) {
    transform: rotate(0.5deg);
}

.team-member:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--secondary-color);
}

.member-image {
    margin-bottom: 1rem;
}

.member-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

.services-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #f7fafc 100%);
}

.services-overview h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    transform: rotate(-0.5deg);
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
}

.service-detail-item:nth-child(even) {
    transform: rotate(0.3deg);
}

.service-detail-item:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--accent-color);
}

.service-detail-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.service-detail-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.why-choose-us {
    padding: 4rem 0;
    background: var(--bg-color);
}

.why-choose-us h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    transform: rotate(-0.5deg);
}

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

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    text-align: center;
}

.advantage-item:nth-child(even) {
    transform: rotate(0.5deg);
}

.advantage-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--accent-color);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Page Styles */
.blog-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.blog-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.blog-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    filter: brightness(0) invert(1) drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

.blog-articles {
    padding: 4rem 0;
    background: var(--bg-color);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-card.featured .blog-content {
    padding: 2rem;
}

.blog-card.featured h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-card.featured h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-card.featured h2 a:hover {
    color: var(--secondary-color);
}

.blog-category {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.blog-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}

.blog-categories h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    transform: rotate(-0.5deg);
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.category-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--accent-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Article Page Styles */
.article-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.article-breadcrumb {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: white;
}

.article-hero-content {
    text-align: center;
}

.article-hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-hero-image {
    margin-top: 2rem;
}

.article-hero-img {
    width: 100px;
    height: 100px;
    filter: brightness(0) invert(1) drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

.article-content {
    padding: 4rem 0;
    background: var(--bg-color);
}

.article-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-main {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
}

.article-main:hover {
    transform: rotate(0deg);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.article-intro {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(44, 82, 130, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.article-main h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    transform: rotate(-0.3deg);
}

.article-main h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-main ul, .article-main ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-main li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.formula-box {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    transform: rotate(-0.5deg);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.formula-box h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0;
}

.example-box {
    background: #f0f8ff;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    transform: rotate(0.3deg);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.example-box h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.important-note {
    background: #fff5f5;
    border: 3px solid #e53e3e;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    transform: rotate(-0.3deg);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.important-note h4 {
    color: #e53e3e;
    margin-bottom: 1rem;
}

.article-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    transform: rotate(-0.5deg);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: rotate(0deg);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget ul li {
    margin-bottom: 0.5rem;
}

.sidebar-widget ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: var(--secondary-color);
}

.related-articles li::before {
    content: "📖";
    margin-right: 0.5rem;
}

.categories li::before {
    content: "📁";
    margin-right: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: var(--bg-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
}

.legal-content:hover {
    transform: rotate(0deg);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    transform: rotate(-0.3deg);
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.last-updated {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-info {
    background: #f7fafc;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    transform: rotate(-0.3deg);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.cookie-table tr:hover {
    background: #f7fafc;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 3rem;
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 0;
    background: var(--bg-color);
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: block;
}

.thanks-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.submission-details {
    background: #f0f8ff;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    transform: rotate(-0.3deg);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.submission-details h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    transform: rotate(-0.5deg);
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step:nth-child(2) {
    transform: rotate(0.5deg);
}

.step:nth-child(3) {
    transform: rotate(-0.8deg);
}

.step:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--secondary-color);
}

.step-number {
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info {
    margin: 3rem 0;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    transform: rotate(-0.5deg);
}

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

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item:nth-child(even) {
    transform: rotate(0.3deg);
}

.contact-item:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow-color);
    border-color: var(--secondary-color);
}

.additional-resources {
    margin: 3rem 0;
}

.additional-resources h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.additional-resources p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

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

.resource-link {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
}

.resource-link:nth-child(2) {
    transform: rotate(0.3deg);
}

.resource-link:nth-child(3) {
    transform: rotate(-0.5deg);
}

.resource-link:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow-color);
    border-color: var(--accent-color);
}

.resource-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.resource-link h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-link p {
    color: var(--text-color);
    margin-bottom: 0;
}

.emergency-contact {
    margin: 3rem 0;
    background: #fff5f5;
    border: 3px solid #e53e3e;
    border-radius: 15px;
    padding: 2rem;
    transform: rotate(-0.3deg);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.emergency-contact h2 {
    color: #e53e3e;
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.emergency-phone {
    text-align: center;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 3px solid var(--border-color);
        box-shadow: 0 4px 20px var(--shadow-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .form-group {
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .blog-card.featured .blog-image {
        height: 200px;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .service-detail-item {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .resource-links {
        grid-template-columns: 1fr;
    }

    .resource-link {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 1.5rem;
    }

    .newsletter-form {
        padding: 0;
    }

    .legal-content {
        padding: 2rem;
    }

    .article-main {
        padding: 2rem;
    }

    .thanks-content {
        padding: 0 1rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-message {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-notice,
    .cookie-modal,
    .nav-toggle,
    .btn-primary,
    .btn-secondary,
    .btn-emergency {
        display: none !important;
    }

    body {
        color: #000 !important;
        background: #fff !important;
    }

    .hand-drawn,
    .service-card,
    .testimonial-card,
    .blog-card {
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .article-main {
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .legal-content {
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    a {
        color: #000 !important;
        text-decoration: underline !important;
    }

    .formula-box,
    .example-box,
    .important-note {
        transform: none !important;
        box-shadow: none !important;
        border: 2px solid #ccc !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #000;
        --accent-color: #000;
        --text-color: #000;
        --border-color: #000;
    }

    .btn-primary,
    .btn-secondary,
    .btn-emergency {
        border: 3px solid #000 !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
