.header {
            background: #2c2c2c;
            color: white;
            padding: 40px 30px;
            text-align: center;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.8;
            font-weight: 300;
        }

        .content {
            padding: 40px;
        }

        .section a {
            color: #e8914e;
            text-decoration: none;
            font-weight: bold;
        }

        .section {
            margin-bottom: 30px;
            padding: 25px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            background: #fdfcfc;
        }

        .section h2 {
            color: #1a1a1a;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #d0d0d0;
            font-weight: 400;
        }

        .section h3 {
            color: #2a2a2a;
            font-size: 1.1rem;
            margin: 15px 0 10px 0;
            font-weight: 500;
        }

        .section p, .section li {
            margin-bottom: 8px;
            color: #444;
            font-weight: 300;
        }

        .section ul, .section ol {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
            background: white;
            border: 1px solid #d0d0d0;
        }

        .data-table th {
            background: #f0f0f0;
            color: #333;
            padding: 15px;
            text-align: left;
            font-weight: 500;
            border-bottom: 1px solid #d0d0d0;
        }

        .data-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
            border-right: 1px solid #e0e0e0;
        }

        .data-table td:last-child {
            border-right: none;
        }

        .data-table tr:last-child td {
            border-bottom: none;
        }

        .data-table tr:hover {
            background: #f8f8f8;
        }

        .contact-info {
            background: #f5f5f5;
            padding: 30px;
            border-radius: 4px;
            margin-top: 30px;
            border: 1px solid #d0d0d0;
        }

        .contact-info h2 {
            color: #1a1a1a;
            border-bottom: 1px solid #c0c0c0;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .contact-info p {
            color: #333;
            margin-bottom: 8px;
            font-weight: 300;
        }

        .contact-info a {
            color: #555;
            text-decoration: underline;
        }

        .contact-info a:hover {
            color: #222;
        }

        .highlight {
            background: #f0f0f0;
            padding: 15px;
            border-radius: 4px;
            margin: 15px 0;
            border-left: 3px solid #999;
        }

        .highlight p {
            margin-bottom: 0;
        }

        strong {
            color: #222;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .content {
                padding: 20px;
            }
            
            .section {
                padding: 20px;
            }
            
            .data-table {
                font-size: 0.9rem;
            }
            
            .data-table th,
            .data-table td {
                padding: 10px;
            }
        }