/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #FF5757;
}

h1 {
    font-size: 2.5em;
    color: #FF5757;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.dates {
    font-size: 0.95em;
    color: #777;
    line-height: 1.6;
}

/* Section Styles */
section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.8em;
    color: #FF5757;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFE5E5;
}

h3 {
    font-size: 1.3em;
    color: #444;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

h4 {
    font-size: 1.1em;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: #444;
}

/* List Styles */
ul {
    margin: 15px 0 25px 25px;
    list-style-type: disc;
}

ul li {
    margin-bottom: 10px;
    color: #444;
    padding-left: 5px;
}

ul.no-collect li,
ul.security li,
ul.public li,
ul.private li {
    list-style-type: none;
    margin-left: -25px;
    padding-left: 0;
}

/* Box Styles */
.contact-box {
    background: #FFE5E5;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FF5757;
    margin: 20px 0;
}

.third-party {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.third-party h4 {
    color: #FF5757;
    margin-top: 15px;
}

.third-party h4:first-child {
    margin-top: 0;
}

/* Highlighted Text */
.highlight {
    background: #FFF4E5;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #FFA500;
    margin: 15px 0;
    font-weight: 500;
}

.important {
    background: #FFE5E5;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #FF5757;
    margin: 15px 0;
}

/* Links */
a {
    color: #FF5757;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
}

a:hover {
    border-bottom: 1px solid #FF5757;
}

/* Thank You Section */
.thank-you {
    text-align: center;
    font-size: 1.3em;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF4E5 100%);
    border-radius: 10px;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
    color: #777;
    font-size: 0.9em;
}

.copyright {
    margin-top: 15px;
    font-size: 0.85em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 25px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    ul {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.7em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    .contact-box,
    .third-party {
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        max-width: 100%;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}
