* {
    box-sizing: none;
}

.subprocessors-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.subprocessors-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #4a90e2;
    border-radius: 12px 12px 0 0;
}

.subprocessors-container h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.subprocessors-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
    border-radius: 1.5px;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
}

.processor-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.processor-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.processor-item:hover {
    transform: translateY(-5px);
}

.processor-item h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.purpose {
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
}

.processor-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    height: 100px;
}

.processor-item ul li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.processor-item ul li:before {
    content: "•";
    color: #4a90e2;
    position: absolute;
    left: 0;
}

.processor-item a {
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.processor-item a:hover {
    color: #357abd;
}

.data-protection {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.data-protection h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.data-protection p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.subprocessors-container button {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    text-align: center;
    border: none;
    width: 200px;
    margin: 30px auto 0;
    cursor: pointer;
}

.subprocessors-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .subprocessors-container {
        margin: 20px auto;
    }

    .processor-list {
        grid-template-columns: 1fr;
    }

    .processor-item {
        padding: 20px;
    }

    .back-button {
        padding: 8px 20px;
        font-size: 14px;
    }
} 