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

:root {
    --gold: #D3AF37;
    --dark: #292E2D;
    --teal: #096C6C;
    --blue-gray: #668C91;
    --light: #F1EFEB;
}

body {
    font-family: "Source Serif 4", serif;
    color: var(--dark);
    background: var(--dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--light);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--teal);
}

nav.scrolled {
    padding: 0.5rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    font-family: "Merriweather Sans", sans-serif;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 3fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0;
    height: 100vh;
}

.left-hero {
    display: flex;
    height: 100vh;
    background: var(--light);
}

.left-hero img {
    object-fit: contain;
    min-width: 20%;
    height: auto;
}

.right-hero {
    height: 100vh;
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
}

.right-hero img {
    width: 200px;
    animation: fadeInUp 1s forwards 0.3s;
}

.lightning-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lightning {
    position: absolute;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
    box-shadow: 0 0 15px var(--gold), 0 0 30px var(--gold), 0 0 45px var(--gold);
    opacity: 0;
    animation: strikeDiagonal 3s infinite;
    transform-origin: left center;
}

@keyframes strikeDiagonal {
    0% {
        width: 0;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    15% {
        width: 150%;
        opacity: 0.8;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero h1 {
    font-size: 4rem;
    padding-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
    line-height: 1.2;
    font-family: "Merriweather Sans", sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    padding-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
    color: var(--gold);
    font-style: italic;
}

.hero-text {
    font-size: 1.1rem;
    padding-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.9s;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.2s;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 5px;
    font-family: "Merriweather Sans", sans-serif;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    font-weight: 400;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(211, 175, 55, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 2px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--blue-gray);
    color: var(--dark);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 6rem 5%;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: "Merriweather Sans", sans-serif;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.section-title-withouticon {
    margin-bottom: 1.5rem;
    color: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-title-withouticon h2 {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 2.8rem;
}

.section-title img {
    width: 150px;
    flex-shrink: 0;
    align-items: flex-start;
}

.section-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-text h2 {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
}

.section-text p {
    margin: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--blue-gray);
    margin-bottom: 4rem;
    font-style: italic;
}

/* Offer Section */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.offer-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--teal);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 175, 55, 0.2), transparent);
    transition: left 0.6s;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(9, 108, 108, 0.2);
}

.offer-icon {
    display: block;
    margin-bottom: 1rem;
}

.offer-icon img {
    width: 180px;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: "Merriweather Sans", sans-serif;
}

.offer-card p {
    line-height: 1.8;
    color: var(--blue-gray);
    margin-bottom: 1.5rem;
}

.offer-list ul {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-list ul li {
    padding: 0.5rem 0;
    color: var(--dark);
    position: relative;
    padding-left: 1.5rem;
    font-family: "Merriweather Sans", sans-serif;
}

.offer-list ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.btn-offer-row {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

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

.about .section-title {
    color: var(--light);
}

.about .section-subtitle {
    color: var(--gold);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    font-family: "Merriweather Sans", sans-serif;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

.value-item {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--dark);
    transition: all 0.3s;
    color: var(--blue-gray);
}

.value-item p {
    font-style: italic;
}

.value-item:hover {
    background: rgba(241, 239, 235, 0.9);
    transform: translateX(10px);
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: "Merriweather Sans", sans-serif;
}

.about-offer h4 {
    font-size: 1.2rem;
}

/* Blog Section */
.blog-grid {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.blog-grid::-webkit-scrollbar {
    height: 8px;
}

.blog-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blog-grid::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 10px;
}

.blog-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.blog-card {
    min-width: 320px;
    max-width: 420px;
    flex-shrink: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid var(--teal);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff 0%, #fffef9 100%);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image {
    background: linear-gradient(135deg, var(--gold) 0%, #ffd700 50%, #ffe680 100%);
    transform: scale(1.02);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: "Merriweather Sans", sans-serif;
}

.blog-card p {
    color: var(--blue-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-family: "Merriweather Sans", sans-serif;
}

.blog-link:hover {
    color: var(--gold);
}

.blog-empty-state,
.blog-error-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--blue-gray);
    font-size: 1.1rem;
}

.blog-error-state {
    color: #ff4444;
}

/* Blog Modal */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blog-modal.active {
    opacity: 1;
    visibility: visible;
}

.blog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.blog-modal-content {
    position: relative;
    background: var(--light);
    border-radius: 8px;
    border: 2px solid var(--gold);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.blog-modal.active .blog-modal-content {
    transform: scale(1);
}

.blog-modal-content::-webkit-scrollbar {
    width: 8px;
}

.blog-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.blog-modal-content::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 10px;
}

.blog-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.blog-modal-close {
    position: sticky;
    top: 20px;
    right: 20px;
    float: right;
    background: var(--teal);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 15%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
    font-family: "Merriweather Sans", sans-serif;
}

.blog-modal-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.blog-modal-header {
    padding: 40px 40px 20px;
    text-align: center;
}

.blog-modal-thumbnail {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blog-modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.blog-modal-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: "Merriweather Sans", sans-serif;
}

.blog-modal-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--teal);
    font-size: 0.9rem;
}

.blog-modal-date,
.blog-modal-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-modal-date::before {
    content: "Data:";
}

.blog-modal-body {
    padding: 20px 40px 40px;
    color: var(--dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-modal-body h1,
.blog-modal-body h2,
.blog-modal-body h3,
.blog-modal-body h4 {
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-family: "Merriweather Sans", sans-serif;
}

.blog-modal-body p {
    margin-bottom: 16px;
    color: var(--teal);
    line-height: 1.7;
}

.blog-modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-modal-body a {
    color: var(--teal);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-modal-body a:hover {
    color: var(--gold);
}

.blog-modal-body ul,
.blog-modal-body ol {
    margin-left: 20px;
    margin-bottom: 16px;
    color: var(--teal);
}

.blog-modal-body blockquote {
    border-left: 4px solid var(--teal);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--blue-gray);
}

/* Navigation Arrows */
.blog-nav-container {
    position: relative;
}

.blog-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--teal);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: bold;
}

.blog-nav-btn:hover {
    background: var(--gold);
}

.blog-nav-btn.prev {
    left: -25px;
}

.blog-nav-btn.next {
    right: -25px;
}

/* Job Section */
#kariera {
    background: var(--gold);
}

#kariera .section-subtitle {
    color: var(--teal);
}

.job-item {
    border: 2px solid var(--teal);
    color: var(--blue-gray);
}

/* Contact Section */
.contact {
    background: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--teal);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: bold;
    font-family: "Merriweather Sans", sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--blue-gray);
    border-radius: 5px;
    font-family: "Merriweather Sans", sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.consent-group {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: normal;
}

.consent-label input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--teal);
}

.consent-text {
    flex: 1;
    line-height: 1.6;
    color: var(--dark);
    font-size: 0.95rem;
}

.policy-link {
    color: var(--teal);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}

.policy-link:hover {
    color: var(--gold);
}

.consent-label input[type="checkbox"]:invalid {
    outline: 1px solid #d32f2f;
    outline-offset: 2px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 2rem 5%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Merriweather Sans';
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: privacyFadeIn 0.3s;
}

@keyframes privacyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.privacy-modal-content {
    background-color: var(--light);
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: privacySlideIn 0.3s;
    border: 2px solid var(--teal);
}

@keyframes privacySlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.privacy-close {
    color: #666;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.privacy-close:hover,
.privacy-close:focus {
    color: #000;
}

.privacy-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.privacy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.privacy-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.privacy-error {
    color: #d32f2f;
    padding: 20px;
    text-align: center;
}

.privacy-content {
    line-height: 1.6;
    color: #333;
    text-align: start;
}

.privacy-content h1, 
.privacy-content h2, 
.privacy-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-content ul, 
.privacy-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

/* Energy Flow Animation */
.energy-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0;
    animation: flow 3s infinite;
}

@keyframes flow {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(300px);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero offer page */
.hero-offer h1 {
    font-size: 2.4rem;
}

/* ==========================================
RESPONSIVE DESIGN
========================================== */

/* Tablet landscape (to 1200px) */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr 2fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-text {
        font-size: 1rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 3rem auto 0;
    }
    
    .section-title img {
        width: 120px;
    }
}

/* Tablet portrait (to 1024px) */
@media (max-width: 1024px) {
    nav {
        padding: 1.2rem 4%;
    }
    
    .nav-links {
        gap: 1.8rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    section {
        padding: 5rem 4%;
    }
    
    .section-title h2,
    .section-title-withouticon h2 {
        font-size: 2.4rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-container {
        gap: 3rem;
    }
    
    .blog-grid {
        gap: 2rem;
    }
    
    .blog-card {
        min-width: 300px;
        max-width: 350px;
    }
    
    .blog-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Tablet portrait small (to 900px) */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        margin-top: 80px;
        margin-bottom: 50px;
    }
    
    .left-hero {
        display: none;
    }
    
    .right-hero {
        height: auto;
        min-height: 60vh;
        padding: 3rem 4%;
        align-items: flex-start;
        text-align: left;
    }
    
    .right-hero img {
        width: 180px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: left;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .cta-buttons {
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .section-title,
    .section-title-withouticon,
    .section-subtitle {
        text-align: left !important;
    }
    
    .section-title-withouticon h2 {
        align-self: flex-start;
    }
}

/* Mobile landscape / Tablet mini (to 768px) */
@media (max-width: 768px) {
    nav {
        padding: 1rem 4%;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.3rem;
        width: 100%;
    }
    
    .hero {
        margin-top: 70px;
        margin-bottom: 40px;
    }
    
    .right-hero {
        padding: 2.5rem 5%;
        min-height: 50vh;
    }
    
    .right-hero img {
        width: 150px;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        padding-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        padding-bottom: 2rem;
        line-height: 1.5;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        max-width: 100%;
    }
    
    section {
        padding: 4rem 5%;
    }
    
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }
    
    .section-title img {
        width: 100px;
    }
    
    .section-text h2 {
        font-size: 2rem;
        text-align: left;
    }
    
    .section-text p {
        text-align: left;
    }
    
    .section-title-withouticon {
        align-items: flex-start;
        text-align: left;
    }
    
    .section-title-withouticon h2 {
        font-size: 2rem;
        text-align: left;
        align-self: flex-start;
    }
    
    .section-subtitle {
        text-align: left;
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .offer-grid {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-icon img {
        width: 150px;
    }
    
    .offer-card h3 {
        font-size: 1.6rem;
    }
    
    .offer-card p {
        font-size: 0.95rem;
    }
    
    .offer-list ul li {
        font-size: 0.9rem;
    }
    
    .btn-offer-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-offer-row .btn-primary,
    .btn-offer-row .btn-secondary {
        width: 100%;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .values-grid {
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
    }
    
    .value-item:hover {
        transform: none;
    }
    
    .blog-grid {
        gap: 1.5rem;
        padding: 15px 0;
    }
    
    .blog-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .blog-image {
        height: 180px;
        font-size: 2.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-card h3 {
        font-size: 1.2rem;
    }
    
    .blog-card p {
        font-size: 0.95rem;
    }
    
    .blog-card:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .blog-card:hover::before {
        left: -100%;
    }
    
    .blog-card:hover .blog-image {
        transform: none;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    .blog-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 10px;
    }
    
    .blog-modal-header {
        padding: 30px 20px 15px;
    }
    
    .blog-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .blog-modal-body {
        padding: 15px 20px 30px;
        font-size: 1rem;
    }
    
    .blog-modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .blog-modal-thumbnail {
        max-height: 250px;
    }
    
    .blog-modal-icon {
        font-size: 40px;
    }
    
    .blog-modal-meta {
        font-size: 0.85rem;
    }
    
    .blog-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .blog-nav-btn.prev {
        left: -10px;
    }
    
    .blog-nav-btn.next {
        right: -10px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .consent-text {
        font-size: 0.9rem;
    }
    
    .consent-label input[type="checkbox"] {
        min-width: 18px;
        height: 18px;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .privacy-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 5% auto;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-close {
        font-size: 28px;
    }
    
    .privacy-modal-body {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    footer {
        padding: 1.5rem 5%;
        font-size: 0.9rem;
    }
}

/* Mobile portrait (to 480px) */
@media (max-width: 480px) {
    nav {
        padding: 0.9rem 4%;
    }
    
    .hero {
        margin-top: 65px;
        margin-bottom: 30px;
    }
    
    .right-hero {
        padding: 2rem 5%;
    }
    
    .right-hero img {
        width: 130px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        padding-bottom: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding-bottom: 1.2rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        padding-bottom: 1.8rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    section {
        padding: 3.5rem 5%;
    }
    
    .section-title img {
        width: 80px;
    }
    
    .section-text h2,
    .section-title-withouticon h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .offer-grid {
        gap: 1.8rem;
    }
    
    .offer-card {
        padding: 1.8rem 1.3rem;
    }
    
    .offer-icon img {
        width: 120px;
    }
    
    .offer-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .offer-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .offer-list ul li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .offer-list ul li::before {
    content: '';
    }
    
    .btn-offer-row {
        gap: 12px;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .values-grid {
        gap: 1.3rem;
    }
    
    .value-item {
        padding: 1.3rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .blog-grid {
        gap: 1.2rem;
        padding: 10px 0;
    }
    
    .blog-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .blog-image {
        height: 160px;
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .blog-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
    
    .blog-nav-btn {
        display: none;
    }
    
    .blog-modal-content {
        width: 98%;
        border-radius: 8px;
    }
    
    .blog-modal-header {
        padding: 25px 15px 12px;
    }
    
    .blog-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .blog-modal-body {
        padding: 12px 15px 25px;
        font-size: 0.95rem;
    }
    
    .blog-modal-thumbnail {
        max-height: 200px;
    }
    
    .blog-modal-icon {
        font-size: 36px;
    }
    
    .blog-modal-meta {
        font-size: 0.8rem;
        gap: 15px;
    }
    
    .contact-form {
        padding: 1.8rem 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .consent-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .consent-label input[type="checkbox"] {
        min-width: 16px;
        height: 16px;
    }
    
    .map-container {
        min-height: 250px;
    }
    
    .privacy-modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .privacy-modal-header {
        padding: 15px;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .privacy-close {
        font-size: 26px;
    }
    
    .privacy-modal-body {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    footer {
        padding: 1.2rem 5%;
        font-size: 0.85rem;
    }
}

/* Mobile small (to 360px) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-text {
        font-size: 0.85rem;
    }
    
    .right-hero img {
        width: 110px;
    }
    
    .section-text h2,
    .section-title-withouticon h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .offer-card h3 {
        font-size: 1.3rem;
    }
    
    .blog-card {
        min-width: 240px;
        max-width: 240px;
    }
}

/* Landscape mode for small devices */
@media (max-height: 500px) and (orientation: landscape) {
    .right-hero {
        min-height: auto;
        padding: 1.5rem 5%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        padding-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        padding-bottom: 1.5rem;
    }
    
    .right-hero img {
        width: 100px;
        margin-bottom: 0.5rem;
    }
}

/* Disable hover for touch screens */
@media (hover: none) {
    .offer-card:hover,
    .blog-card:hover,
    .value-item:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .offer-card:hover::before,
    .blog-card:hover::before {
        left: -100%;
    }
}

/* Availability on small screens */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    .nav-links a,
    .btn-primary,
    .btn-secondary,
    .blog-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}