/* Dodatkowe style dla strony "Złóż deklarację" */

.declaration-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.declaration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

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

.declaration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.declaration-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.declaration-card:hover .declaration-icon {
    background-color: var(--primary-dark);
}

.declaration-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.declaration-card p {
    line-height: 1.6;
    margin-bottom: 0;
}

.mt-50 {
    margin-top: 50px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

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

.info-card {
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.info-card h2 {
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

.info-step {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.step-number {
    flex: 0 0 60px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    flex: 1;
    padding: 20px;
}

.step-content h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.link-arrow i {
    margin-left: 8px;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--primary-dark);
}

.link-arrow:hover i {
    transform: translateX(3px);
}

.info-note {
    background-color: rgba(231, 76, 60, 0.08);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 40px;
}

.info-note h3 {
    color: #c0392b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-note h3 i {
    margin-right: 10px;
}

.info-note ul {
    padding-left: 20px;
}

.info-note ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .declaration-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .info-step {
        flex-direction: column;
    }
    
    .step-number {
        flex: 0 0 auto;
        padding: 10px;
        width: 100%;
    }
}