<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==================== ZMIENNE ==================== */
:root {
    /* Kolory */
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --background-color: #f9f9f9;
    --text-color: #333333;
    --light-text-color: #777777;
    --white-color: #ffffff;
    --dark-color: #1a252f;
    --light-gray: #eeeeee;
    --medium-gray: #dddddd;
    --border-color: #dddddd;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --info-color: #2196F3;
    
    /* Czcionki */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Cienie */
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* ZaokrÄ…glenia */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
    
    /* Transition */
    --transition: all 0.3s ease;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul, ol {
    list-style-type: none;
}

button, input, select, textarea {
    font-family: inherit;
}

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

p {
    margin-bottom: 1rem;
}

/* ==================== CONTAINERS ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: 80px 0;
}

/* ==================== HEADER &amp; NAVIGATION ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--container-padding);
}

.logo-container {
    display: flex;
    align-items: center;
}

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

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding: 5px 0;
}

.main-nav a:not(.nav-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:not(.nav-button):hover::after {
    width: 100%;
}

.nav-button {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white-color) !important;
    border-radius: var(--border-radius-medium);
    transition: var(--transition);
}

.nav-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ==================== HERO BANNER ==================== */
.hero-banner {
    padding: 150px 0 80px;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.hero-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.banner-content {
    flex: 1;
    max-width: 600px;
}

.banner-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: flex-end;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-banner p {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 2rem;
}

.banner-buttons {
    display: flex;
    gap: 15px;
}

/* ==================== BUTTONS ==================== */
.primary-button, .secondary-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.primary-button {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.primary-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text-color);
    max-width: 700px;
    margin: 15px auto 0;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background-color: var(--white-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image, .about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.about-text ul li {
    margin-bottom: 0.5rem;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text-color);
}

/* ==================== BLOG PREVIEW SECTION ==================== */
.blog-preview-section {
    background-color: var(--white-color);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.article-content p {
    color: var(--light-text-color);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.read-more::after {
    content: 'â†’';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.blog-button-container {
    text-align: center;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background-color: rgba(230, 126, 34, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(52, 152, 219, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: -1;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--light-text-color);
    font-size: 0.9rem;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.newsletter-text, .newsletter-form-container {
    flex: 1;
}

.newsletter-text h2 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-form {
    display: flex;
    flex: 1;
    gap: 10px;
}

.newsletter-form .form-group {
    flex: 1;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius-medium);
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .primary-button {
    background-color: var(--secondary-color);
}

.newsletter-form .primary-button:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background-color: var(--white-color);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form-container {
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h4 {
    color: var(--white-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p, .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.social-media h4 {
    color: var(--white-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius-medium);
    padding: 40px;
    background-color: var(--white-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.contact-form .primary-button {
    align-self: flex-start;
    margin-top: 10px;
}

/* ==================== FOOTER ==================== */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 20px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-details-footer li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-details-footer li svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

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

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

/* ==================== COOKIE MANAGEMENT ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1001;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    margin-bottom: 10px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-button {
    padding: 10px 20px;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-button.primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.cookie-button.primary:hover {
    background-color: var(--secondary-color);
}

.cookie-button.secondary {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.cookie-button.secondary:hover {
    background-color: var(--medium-gray);
}

.cookie-button.tertiary {
    background-color: transparent;
    color: var(--accent-color);
}

.cookie-button.tertiary:hover {
    text-decoration: underline;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    display: none;
}

.cookie-modal-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin-bottom: 0;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text-color);
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-option-header h4 {
    margin-bottom: 0;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* ==================== THANKS PAGE ==================== */
.thanks-page {
    padding: 150px 0 80px;
    background-color: var(--white-color);
}

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

.thanks-image {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius-medium);
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.thanks-details ul {
    list-style-type: disc;
    padding-left: 20px;
}

.thanks-details ul li {
    margin-bottom: 10px;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ==================== BLOG ==================== */
.blog-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 150px 0 80px;
    text-align: center;
}

.blog-header h1 {
    color: var(--white-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.blog-list {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

.blog-post {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.blog-post-image {
    height: 230px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light-text-color);
    font-size: 0.9rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-post-excerpt {
    color: var(--light-text-color);
    margin-bottom: 20px;
}

/* ==================== ARTICLE PAGE ==================== */
.article-header {
    padding: 150px 0 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.article-title {
    max-width: 800px;
    margin: 0 auto;
}

.article-title h1 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-content-wrapper {
    padding: 60px 0;
    background-color: var(--white-color);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-image-featured {
    margin-bottom: 40px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 0 0 20px 20px;
}

.article-body ul {
    list-style-type: disc;
}

.article-body ol {
    list-style-type: decimal;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin: 20px 0;
    background-color: var(--light-gray);
    font-style: italic;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-small);
    margin: 20px 0;
}

.article-body a {
    color: var(--accent-color);
    text-decoration: underline;
}

.article-body a:hover {
    color: var(--secondary-color);
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.article-tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.article-tag:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--text-color);
    transition: var(--transition);
}

.share-button:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.related-articles {
    background-color: var(--background-color);
    padding: 60px 0;
}

.related-title {
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ==================== LEGAL PAGES ==================== */
.legal-header {
    padding: 150px 0 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.legal-header h1 {
    color: var(--white-color);
    font-size: 2.5rem;
}

.legal-content {
    padding: 60px 0;
    background-color: var(--white-color);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    margin: 0 0 20px 20px;
}

.legal-section ul {
    list-style-type: disc;
}

.legal-section ol {
    list-style-type: decimal;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

/* ==================== 404 PAGE ==================== */
.error-page {
    padding: 150px 0 100px;
    background-color: var(--white-color);
    text-align: center;
}

.error-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-image {
    margin-bottom: 30px;
}

.error-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 1.2rem;
    color: var(--light-text-color);
    margin-bottom: 30px;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
</pre></body></html>