
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Droid Sans', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        #color-stripes {
            height: 5px;
            background: linear-gradient(to right, #8bc34a 0%, #8bc34a 33%, #ffc107 33%, #ffc107 66%, #ff5722 66%, #ff5722 100%);
        }

        #header {
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #logo-area {
            text-align: center;
            margin-bottom: 20px;
        }

        #logo-area h1 {
            font-size: 2.5em;
            color: #8bc34a;
            font-weight: bold;
            margin: 0;
        }

        #slogan {
            font-size: 1.1em;
            color: #666;
            margin-top: 5px;
        }

        nav {
            background-color: #8bc34a;
            padding: 0;
            margin-top: 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            padding: 15px 20px;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #7cb342;
        }

        #main-content-area {
            background-color: #fff;
            padding: 40px 0;
            min-height: 500px;
        }

        #breadcrumbs {
            margin-bottom: 20px;
            color: #666;
            font-size: 0.9em;
        }

        #breadcrumbs a {
            color: #8bc34a;
            text-decoration: none;
        }

        #breadcrumbs a:hover {
            text-decoration: underline;
        }

        .raquo {
            margin: 0 8px;
        }

        h1 {
            font-size: 2.2em;
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #8bc34a;
        }

        article {
            margin-bottom: 40px;
            line-height: 1.8;
        }

        article h2 {
            font-size: 1.8em;
            color: #333;
            margin: 30px 0 15px;
        }

        article h3 {
            font-size: 1.4em;
            color: #555;
            margin: 25px 0 12px;
        }

        article p {
            margin-bottom: 15px;
            color: #555;
        }

        .transition-section {
            margin: 40px 0;
            padding: 30px;
            background-color: #f5f5f5;
            border-left: 4px solid #8bc34a;
        }

        .transition-section p {
            color: #555;
            line-height: 1.8;
        }

        .links-section {
            margin-top: 50px;
            padding: 40px;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
        }

        .links-section h3 {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8bc34a;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin-top: 15px;
        }

        .links-section ul li {
            margin-bottom: 10px;
            break-inside: avoid;
        }

        .links-section ul li a {
            color: #8bc34a;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
        }

        .links-section ul li a:hover {
            color: #7cb342;
            text-decoration: underline;
        }

        #footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        #footer-widgets {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-widget h4 {
            color: #8bc34a;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .footer-widget ul {
            list-style: none;
        }

        .footer-widget ul li {
            margin-bottom: 8px;
        }

        .footer-widget ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-widget ul li a:hover {
            color: #8bc34a;
        }

        #footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
        }

        #footer-bottom ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 15px;
        }

        #footer-bottom ul li {
            margin: 0 15px 10px;
        }

        #footer-bottom ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9em;
        }

        #footer-bottom ul li a:hover {
            color: #8bc34a;
        }

        #copyright {
            color: #999;
            font-size: 0.85em;
        }

        #bottom-color-stripes {
            height: 5px;
            background: linear-gradient(to right, #8bc34a 0%, #8bc34a 33%, #ffc107 33%, #ffc107 66%, #ff5722 66%, #ff5722 100%);
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
            }

            nav ul li a {
                padding: 12px 15px;
            }

            #logo-area h1 {
                font-size: 2em;
            }

            h1 {
                font-size: 1.8em;
            }

            article h2 {
                font-size: 1.5em;
            }

            .links-section ul {
                column-count: 1;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 25px;
            }

            #footer-widgets {
                grid-template-columns: 1fr;
            }

            #footer-bottom ul {
                flex-direction: column;
            }

            #footer-bottom ul li {
                margin: 5px 0;
            }
        }

        @media (max-width: 480px) {
            #logo-area h1 {
                font-size: 1.6em;
            }

            h1 {
                font-size: 1.5em;
            }
        }
    