        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background-color: #f3f4f6;
            color: #333;
            line-height: 1.6;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1A5C63;
            position: relative;
            padding-bottom: 10px;
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #1A5C63;
            border-radius: 2px;
        }

        h2 {
            font-size: 24px;
            margin: 30px 0;
            color: #295C5A;
            position: relative;

        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 45px;
            height: 2px;
            background-color: #295C5A;
            border-radius: 1px;
        }

        p, ul {
            margin-bottom: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        ul {
            padding-left: 20px;
        }

        ul li {
            margin-bottom: 10px;
            list-style-type: disc;
        }

        p:hover, ul li:hover {
            color: #1A5C63;
            transform: translateX(10px);
        }

        .container {
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 20px;
            }

            p {
                font-size: 14px;
            }

            .container {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 24px;
            }

            h2 {
                font-size: 18px;
            }

            .container {
                padding: 15px;
            }
        }