* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Verdana', 'Geneva', sans-serif;
    line-height: 1.8;
    color: #1a3a52;
    background: linear-gradient(135deg, #e0f7ff 0%, #b3e5fc 50%, #81d4fa 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.policy-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-header {
    background: linear-gradient(135deg, #003d66 0%, #0052a3 50%, #0066cc 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
    margin-bottom: 3rem;
    text-align: center;
    border: 3px solid #002244;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date {
    color: #b3e5fc;
    font-style: italic;
    font-size: 1rem;
}

.policy-intro {
    margin-bottom: 3rem;
}

.intro-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
    border: 3px solid #0066cc;
    border-left: 8px solid #0066cc;
}

.intro-card p {
    font-size: 1.15rem;
    color: #1a3a52;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

.intro-card strong {
    color: #0066cc;
    font-weight: 700;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.policy-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
    border: 2px solid #b3e5fc;
    transition: all 0.3s ease;
    overflow: hidden;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.25);
    border-color: #0066cc;
}

.policy-card.full-width {
    grid-column: 1 / -1;
}

.card-header {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 3px solid #003d66;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.card-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 2rem;
}

.card-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.9;
    color: #333;
    font-size: 1.05rem;
}

.card-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.card-body li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    color: #333;
}

.card-body li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 1rem;
    font-weight: bold;
}

.note {
    background: #e0f7ff;
    border-left: 4px solid #0066cc;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    color: #003d66;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-item {
    background: #e0f7ff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #b3e5fc;
}

.contact-item strong {
    color: #0066cc;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0.8rem;
    color: #1a3a52;
}

.form-feedback {
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    background: #f1f9ff;
    color: #0c395b;
}

.form-feedback.success {
    border-color: #2e7d32;
    background: #e6f4ea;
    color: #2f6d34;
}

.form-feedback.error {
    border-color: #d32f2f;
    background: #fdecea;
    color: #9a1a1a;
}

.form-feedback ul {
    margin: 0.8rem 0 0 1.2rem;
}

.privacy-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-row label {
    font-weight: 600;
    color: #0c395b;
}

.form-row input,
.form-row textarea {
    padding: 0.9rem 1.1rem;
    border: 2px solid #b3e5fc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    color: #1a3a52;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.form-submit {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    justify-self: flex-start;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.form-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 1024px) {
    .policy-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: 1rem;
    }
    
    .policy-header {
        padding: 2rem 1.5rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policy-card.full-width {
        grid-column: 1;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-card {
        padding: 2rem 1.5rem;
    }
}
