.privacy-container {
    padding: 80px 20px;
    min-height: 100vh;
}

.privacy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-subtitle {
    color: #F28F49;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.privacy-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #F28F49;
    border-radius: 2px;
}

.privacy-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.intro-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 5px;
    background: #F28F49;
    border-radius: 0 3px 3px 0;
}

.intro-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

main .contact-link {
    color: #F28F49;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

main .contact-link:hover {
    border-bottom-color: #F28F49;
}

main .content-sections {
    padding: 0;
}

.section {
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: #F28F49;
    border-radius: 3px;
}

.section-content {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 20px;
}

.section-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.section-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.section-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F28F49;
    font-weight: 700;
    font-size: 18px;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 5px solid #F28F49;
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    margin: 0;
    color: #333333;
    font-weight: 500;
}

.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.data-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.data-card:hover {
    border-color: #F28F49;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 143, 73, 0.15);
}

.data-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #F28F49;
    margin-bottom: 15px;
}

.data-card ul {
    margin: 0;
}

main .contact-info {
    background: linear-gradient(135deg, #F28F49 0%, #e67c3a 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

main .contact-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

main .contact-info p {
    margin: 8px 0;
    font-size: 16px;
}

main .contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

main .contact-info a:hover {
    border-bottom-color: white;
}

/* Responsive dizajn */
@media (max-width: 768px) {
    .privacy-container {
        padding: 60px 15px;
    }

    .privacy-title {
        font-size: 36px;
    }

    .section {
        padding: 30px 25px;
    }

    .intro-section {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 24px;
    }

    .data-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 28px;
    }

    .section {
        padding: 25px 20px;
    }

    .intro-section {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 20px;
        padding-left: 15px;
    }

    .section-title::before {
        width: 4px;
        height: 20px;
    }
}
