* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #4a90e2;
    --accent-color: #ff6b35;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Navigation Social Media */
.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social-link {
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social-link:hover {
    transform: translateY(-2px);
}

.nav-social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(7%) saturate(1012%) hue-rotate(169deg) brightness(95%) contrast(89%);
    transition: all 0.3s ease;
}

.nav-social-link:hover .nav-social-icon {
    filter: brightness(0) saturate(100%) invert(15%) sepia(32%) saturate(1463%) hue-rotate(185deg) brightness(93%) contrast(94%);
    transform: scale(1.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('images/banner/main_banner_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 30px;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.about-image {
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    overflow: hidden;
    display: flex;
}

.about-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
    flex: 1;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 100px 30px;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    padding: 3px;
    background: var(--light-color);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon:hover img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(60%) saturate(1200%) hue-rotate(186deg) brightness(100%) contrast(98%);
}

.service-icon img {
    width: 109px;
    height: 109px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(14%) sepia(47%) saturate(1134%) hue-rotate(186deg) brightness(93%) contrast(95%);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.contact .container {
    background: rgba(255, 255, 255, 0.95);
    padding: 80px 60px;
    border-radius: 25px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 0 auto;
}

.contact .section-title {
    color: var(--primary-color);
    text-shadow: none;
    margin-bottom: 20px;
}

.contact .section-subtitle {
    color: #666;
    text-shadow: none;
    margin-bottom: 60px;
}

/* Contact Section */
.contact {
    padding: 50px 30px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/banner/main_banner_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-color);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info {
    padding-left: 40px;
}

.contact-form-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    margin-left: 40px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-icon:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.contact-item-icon .material-symbols-outlined {
    font-size: 24px;
    font-weight: 400;
}

.contact-item-text h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item-text p {
    color: #666;
}

.contact-form {
    background: rgba(248, 249, 250, 0.8);
    padding: 0 40px 40px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group.form-group-last {
    margin-bottom: 8px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* reCAPTCHA info */
.recaptcha-info {
    margin: 0 0 20px;
    text-align: left;
}

.recaptcha-info small {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.4;
}

.recaptcha-info a {
    color: var(--accent-blue);
    text-decoration: none;
}

.recaptcha-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 18px;
}

.footer-section h4 {
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--secondary-color);
    font-size: 16px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

/* Footer Contact Items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.5;
}

.footer-contact-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links a .social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover .social-icon {
    filter: brightness(0) invert(1);
    opacity: 1;
    transform: scale(1.2);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 5px 0;
}

.website-credit {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 10px !important;
}

.website-credit a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-credit a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 20px 30px;
        /* Zwiększona wysokość z 15px na 20px */
    }

    .logo-img {
        height: 32px;
        max-width: 150px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-right {
        position: relative;
        /* Zmienione z display: none */
    }

    .nav-social {
        display: none;
        /* Ukrywamy tylko social media w mobilnej wersji */
    }

    .nav-menu {
        position: absolute;
        top: 50px;
        /* Zmienione z 70px na 50px - bliżej do nawigacji */
        left: -30px;
        /* Wyrównanie z kontenerem */
        width: calc(100vw - 60px);
        /* Pełna szerokość minus padding */
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
        border-top: 1px solid #eee;
        border-radius: 0 0 8px 8px;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 16px;
        font-weight: 500;
        display: block;
        padding: 8px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact .container {
        padding: 50px 30px;
        margin: 0 20px;
    }

    .about-image {
        height: 300px;
        min-height: 300px;
        position: static;
        margin-top: 20px;
    }

    .about-text h3 {
        text-align: center;
        font-size: 24px;
    }

    .contact-form-section h3 {
        margin-left: 20px;
        font-size: 24px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-info {
        padding-left: 20px;
    }

    .about-img {
        height: 100%;
        min-height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-icon {
        width: 90px;
        height: 90px;
        padding: 2px;
    }

    .service-icon img {
        width: 85px;
        height: 85px;
        filter: brightness(0) saturate(100%) invert(14%) sepia(47%) saturate(1134%) hue-rotate(186deg) brightness(93%) contrast(95%);
        transition: all 0.3s ease;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .contact .container {
        padding: 30px 15px;
        margin: 0 10px;
        border-radius: 15px;
    }

    .contact-form-section h3 {
        margin-left: 15px;
        font-size: 22px;
    }

    .contact-info h3 {
        font-size: 22px;
    }

    .contact-info {
        padding-left: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top .material-symbols-outlined {
    font-size: 24px;
    transition: color 0.3s ease;
}

/* Policy and Terms Pages */
.policy-page {
    padding-top: 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-bottom: 50px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.policy-header h1 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
}

.policy-content {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-blue);
    display: inline-block;
}

.policy-section p,
.policy-section li {
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #333;
}

.policy-section ul,
.policy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    list-style-type: disc;
}

.policy-section ol li {
    list-style-type: decimal;
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    display: inline-block;
    margin-right: 1rem;
    color: #f0f0f0;
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

/* Responsive design for policy pages */
@media (max-width: 768px) {
    .policy-page {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem 0;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Cooperation page specific styles */
.cooperation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.cooperation-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.area-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.area-item h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 8px;
}

.area-item ul {
    margin: 15px 0 0 20px;
}

.area-item li {
    margin-bottom: 8px;
    color: #555;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.requirement-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.requirement-item .material-symbols-outlined {
    font-size: 48px;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.requirement-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.requirement-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #666;
}

.cooperation-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-method .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 32px;
    color: var(--accent-blue);
    margin-top: 5px;
}

.contact-method h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.contact-method a {
    color: var(--accent-blue);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for cooperation page */
@media (max-width: 768px) {
    .cooperation-benefits {
        grid-template-columns: 1fr;
    }

    .cooperation-areas {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .cooperation-contact {
        padding: 20px !important;
    }
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    bottom: -100px !important;
    right: -100px !important;
}