.calculator-widget,
.feature-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05)
}

.animate-in,
.fade-in {
    opacity: 1 !important
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary-color: #1a3e72;
    --secondary-color: #f8f9fa;
    --accent-color: #ff6b00;
    --text-color: #333;
    --light-text: #6c757d
}

main {
    overflow-x: hidden
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color)
}

.poland-hero {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)) center/cover, url('https://images.unsplash.com/photo-1551029506-0807df4e2031?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80') center/cover;
    color: #fff;
    padding: 100px 0;
    position: relative
}

.poland-hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px
}

.poland-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px
}

.btn-cta {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    border: none !important;
    transition: .3s !important
}

.nav-tabs .nav-link.active,
.step-number {
    background-color: var(--primary-color);
    color: #fff
}

.btn-cta:hover {
    background-color: #e05d00 !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
}

.section-title {
    color: var(--primary-color) !important;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color)
}

.feature-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    height: 100%
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.feature-card .card-body {
    padding: 30px
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700
}

.calculator-widget,
.highlight-box {
    background-color: var(--secondary-color)
}

.comparison-table th {
    background-color: var(--primary-color) !important;
    color: #fff !important
}

.comparison-table td {
    vertical-align: middle
}

.highlight-box {
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0
}

.check-list {
    list-style-type: none;
    padding-left: 0
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px
}

.check-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color)
}

.tab-content {
    padding: 30px;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 5px 5px
}

.nav-tabs .nav-link.active {
    border-color: var(--primary-color)
}

.nav-tabs .nav-link {
    color: var(--primary-color);
    font-weight: 600
}

.calculator-widget {
    padding: 30px;
    border-radius: 10px
}

.form-range::-webkit-slider-thumb {
    background: var(--accent-color)
}

.form-range::-moz-range-thumb {
    background: var(--accent-color)
}

.form-range::-ms-thumb {
    background: var(--accent-color)
}

.result-display {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.2rem
}

.timeline-dot,
.timeline-line {
    left: 50%;
    background-color: var(--accent-color);
    transform: translateX(-50%)
}

.infographic-container {
    position: relative;
    padding: 30px 0
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px
}

.timeline-item {
    position: relative;
    margin-bottom: 40px
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 1
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.timeline-left {
    margin-right: auto;
    text-align: right
}

.timeline-right {
    margin-left: auto
}

@media (max-width:768px) {
    .poland-hero h1 {
        font-size: 2rem
    }

    .poland-hero p {
        font-size: 1rem
    }

    .process-step {
        padding-left: 60px
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem
    }

    .timeline-dot,
    .timeline-line {
        display: none
    }

    .timeline-content {
        width: 100%;
        margin-bottom: 20px
    }

    .timeline-left,
    .timeline-right {
        text-align: left;
        margin-left: 0;
        margin-right: 0
    }
}

.slide-in-left {
    transform: translateX(-50px)
}

.slide-in-right {
    transform: translateX(50px)
}

.slide-in-up {
    transform: translateY(50px)
}

.animate-in {
    transform: translateX(0) translateY(0) !important
}

.animate-on-scroll {
    transition: opacity .6s ease-out, transform .6s ease-out;
    opacity: 0
}