:root {
    --solidarnosc-red: #dc3545;
    --solidarnosc-dark: #b02a37;
    --soft-bg: #fffafa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2d3436;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

.navbar {
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.25rem;
    white-space: nowrap;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d3436 !important;
    transition: 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--solidarnosc-red) !important;
}

.btn-modern {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 48px;
    box-sizing: border-box;
}

.btn-danger {
    background-color: var(--solidarnosc-red);
    border-color: var(--solidarnosc-red);
    color: #fff !important;
}

.btn-danger:hover {
    background-color: var(--solidarnosc-dark);
    border-color: var(--solidarnosc-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger {
    border-color: var(--solidarnosc-red);
    color: var(--solidarnosc-red) !important;
    background: transparent;
}

.btn-outline-danger:hover {
    background-color: var(--solidarnosc-red);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--solidarnosc-red);
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--soft-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-title {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.benefit-card {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
    background: #fff;
    transition: 0.3s;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--solidarnosc-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--soft-bg);
    color: var(--solidarnosc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-section {
    background: var(--solidarnosc-red);
    border-radius: 30px;
    padding: 40px 15px;
    color: white;
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.2);
    overflow: hidden;
}

@media (min-width: 992px) {
    .contact-section {
        padding: 50px 30px;
    }
}

.form-control {
    border-radius: 10px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-control:focus {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
    box-shadow: none;
}

@media (max-width: 1199px) {
    .navbar-nav .nav-link:not(.btn-danger) {
        border: 2px solid var(--solidarnosc-red);
        color: var(--solidarnosc-red) !important;
        border-radius: 10px;
        padding: 12px 24px !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.85rem;
        margin-bottom: 8px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-link:not(.btn-danger):hover {
        background-color: var(--solidarnosc-red);
        color: #fff !important;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .btn-modern {
        width: 100%;
        text-align: center;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }
}

.accordion-button:not(.collapsed) {
    background-color: #fff5f5;
    color: var(--solidarnosc-red);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(220, 53, 69, 0.25);
}

.accordion-item {
    border-bottom: 1px solid #eee !important;
}

.accordion-item:last-child {
    border-bottom: none !important;
}

.lang-group {
    margin-bottom: 0 !important;
    display: flex;
    width: 100%;
}

.lang-group .btn-modern {
    flex: 1;
    border: 2px solid var(--solidarnosc-red) !important;
    border-radius: 0;
    margin-left: -2px;
}

.lang-group .btn-modern:first-child {
    border-radius: 10px 0 0 10px;
    margin-left: 0;
}

.lang-group .btn-modern:last-child {
    border-radius: 0 10px 10px 0;
}

.lang-group .btn-modern.active {
    background-color: var(--solidarnosc-red) !important;
    color: #fff !important;
}

@media (max-width: 1199px) {
    .lang-group {
        margin-bottom: 8px !important;
    }
}

textarea.text-dark.form-control::placeholder,
input.text-dark.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

textarea.text-dark.form-control,
input.text-dark.form-control {
    color: #212529 !important;
}