        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: rgb(0, 0, 0);
            padding: 20px;
            overflow-x: hidden;
        }
        
        .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            padding: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            position: relative;
            height: fit-content;
            border: 1px solid #e0e0e0;
            transition: border-color 0.3s ease;
        }
        
        .box:nth-child(odd) {
            transform: rotate(-2deg);
        }
        
        .box:nth-child(even) {
            transform: rotate(3deg);
        }
        
        .box:nth-child(3n) {
            transform: rotate(1deg);
        }
        
        .box:nth-child(4n) {
            transform: rotate(-3deg);
        }
        
        .box:hover {
            transform: translateY(-5px) rotate(0deg) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            background-color: #8da9cc;
            z-index: 10;
            border-color: #3498db;
        }
        
        h1, h2 {
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        h1 {
            font-size: 1.8rem;
        }
        
        h2 {
            font-size: 1.4rem;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #3498db;
        }
        
        p {
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        dl, ul {
            color: #34495e;
            margin-bottom: 15px;
        }
        
        dt {
            font-weight: bold;
            margin-top: 10px;
        }
        
        dd {
            margin-left: 20px;
            margin-bottom: 5px;
        }
        
        ul {
            list-style-type: none;
        }
        
        li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }
        
        li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #3498db;
        }
        
        a {
            color: #3498db;
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        footer {
            text-align: center;
            padding: 30px;
            margin-top: 40px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        /* Random position adjustments */
        .box:nth-child(1) { margin-top: 20px; }
        .box:nth-child(2) { margin-top: 50px; }
        .box:nth-child(3) { margin-top: 10px; }
        .box:nth-child(4) { margin-top: 40px; }
        .box:nth-child(5) { margin-top: 30px; }
        .box:nth-child(6) { margin-top: 60px; }
        .box:nth-child(7) { margin-top: 5px; }
        .box:nth-child(8) { margin-top: 35px; }
        
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .box:nth-child(n) {
                transform: rotate(0deg) !important;
                margin-top: 15px !important;
            }
        }