/* Basic Reset & Box-Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body and Global Typography */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Headings */
h1, h2, h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    color: #444444; /* A nice blue for the main title */
}

h2 {
    font-size: 1.8em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: 30px;
}

h3 {
    font-size: 1.4em;
    margin-top: 20px;
    color: #444444;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* Links (if any) */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    background-color: #f2f2f2;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    border-left: 5px solid #444444; /* Accent border */
}

ul li h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #1a1a1a;
}

ul li p {
    font-size: 0.95em;
    margin-bottom: 5px;
}

/* Specific Sections */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.policy-resume,
.privacy-policy {
    margin-bottom: 40px;
}

.contact-info {
    background-color: #e9f5ff; /* Light blue background for contact info */
    border-left: 5px solid #007bff;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.contact-info h1 {
    font-size: 1.6em;
    text-align: left;
    color: #444444;
    margin-bottom: 10px;
}

.contact-info h3 {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}

.data-collection p,
.data-processing p,
.purpose-processing p,
.data-information p {
    text-align: justify;
}

/* Styling for Legal Definitions Section */
.legal-definitions {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee; /* A subtle top border to separate it */
}

.legal-definitions h2 {
    color: #444444; /* Keep the main section title consistent */
    text-align: left; /* Align left as with other sub-sections */
    border-bottom: none; /* Remove the bottom border, it's a sub-section title */
    padding-bottom: 0;
    margin-bottom: 20px;
}

.legal-definitions h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a; /* Darker color for sub-headings */
}

.legal-definitions dl {
    margin-bottom: 20px;
}

.legal-definitions dt {
    font-weight: bold;
    color: #444444; /* Make definition terms stand out */
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.legal-definitions dd {
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 1em;
    padding-left: 10px;
    border-left: 3px solid #e9f5ff; /* A subtle border for definitions */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }

    ul li {
        padding: 10px;
    }

    .contact-info {
        padding: 15px;
    }

    /* Responsive adjustments for legal definitions */
    .legal-definitions dt {
        font-size: 1.05em;
    }

    .legal-definitions dd {
        margin-left: 10px;
        padding-left: 8px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1em;
    }

    ul li {
        border-left-width: 3px; /* Slightly thinner border on small screens */
    }

    .legal-definitions h2 {
        font-size: 1.3em;
    }

    .legal-definitions dt {
        font-size: 1em;
        margin-top: 10px;
    }

    .legal-definitions dd {
        margin-left: 5px;
        padding-left: 5px;
    }
}