/* Maximum boredom achieved */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}
        body {
            font-family: 'Georgia', serif;
            line-height: 1.7;
            color: #2c3e50;
            max-width: 800px;                                                              margin: 0 auto;
            padding: 20px;
            background-color: #fdfefe;
        }
        body.darkmode {
        	color: #eee;
        	background-color: #1a1a1a;
        }

        .privacy-header {
            text-align: center;
            border-bottom: 1px solid #bdc3c7;
            padding-bottom: 25px;
            margin-bottom: 35px;
        }

        .privacy-header h1 {
            color: #34495e;
            font-size: 1.7rem;
            margin: 0;
            font-weight: normal;
        }
        body.darkmode .privacy-header h1 {
        	color: #eee;
        }

        .effective-date {
            color: #7f8c8d;
            font-size: 0.85rem;
            margin-top: 8px;
            font-style: italic;
        }
        body.darkmode .effective-data {
        	color: #ddd;
        }

        .privacy-section {
            margin-bottom: 35px;
            background-color: white;
            padding: 25px;
            border-left: 3px solid #ecf0f1;
        }
        body.darkmode .privacy-section {
        	background-color: #000;
        }

        .privacy-section h2 {
            color: #2c3e50;
            font-size: 1.2rem;
            margin-top: 0;
            font-weight: 600;
        }
        body.darkmode .privacy-section h2 {
        	color: #eee;
        }

        .privacy-section p {
            color: #546e7a;
            font-size: 0.92rem;
            text-align: justify;
        }
        body.darkmode .privacy-section p {
        	color: #ddd;
        }

        .privacy-section ul {
            padding-left: 25px;
        }

        .privacy-section li {
            color: #546e7a;
            font-size: 0.92rem;
            margin-bottom: 10px;
            text-align: justify;
        }
        body.darkmode .privacy-section li {
        	color: #ccc;
        	font-weight: 350;
        }

        .note-box {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 20px;
            margin: 25px 0;
            border-radius: 3px;
        }
        body.darkmode .note-box {
        	background-color: #333;
        }

        .note-box strong {
            color: #495057;
        }
        body.darkmode .note-box strong {
        	color: #eee;
        }

        .navigation-links {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding: 20px 0;
            border-top: 1px solid #ecf0f1;
        }

        .nav-link {
            color: #3498db;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .nav-link:hover {
            text-decoration: underline;
        }

        .contact-info {
            background-color: #f8f9fa;
            padding: 20px;
            margin: 30px 0;
            border-radius: 3px;
        }
        body.darkmode .contact-info {
        	background-color: #223;
        }

        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 25px;
            color: #7f8c8d;
            font-size: 0.85rem;
            border-top: 1px solid #ecf0f1;
        }
        body.darkmode .footer {
        	color: #eee;
        }

        /* Making sure nobody enjoys reading this 😀😀😀 */
        .legal-jargon {
            font-style: italic;
            color: #95a5a6;
            font-size: 0.88rem;
        }
        body.darkmode .legal-jargon {
        	color: #eee;
        }
