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

        body {
            font-family: 'Helvetica', Arial, sans-serif;
            background: #f2eee7;
            color: #312924;
            line-height: 1.6;
        }

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

        /* Header */
        header {
            background: #80756d;
            color: white;
            padding: 20px 0;
            position: relative;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            width: 83px;
            height: 108px;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODMiIGhlaWdodD0iMTA4IiB2aWV3Qm94PSIwIDAgODMgMTA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cmVjdCB3aWR0aD0iODMiIGhlaWdodD0iMTA4IiBmaWxsPSIjMDJBMUJCIi8+Cjx0ZXh0IHg9IjUwJSIgeT0iNTAlIiBkb21pbmFudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSIgZm9udC1zaXplPSIxMiI+U1BBUzwvdGV4dD4KPC9zdmc+') no-repeat center;
            margin-right: 40px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #02a1bb;
        }

        .phone-number {
            color: #0eaac5;
            font-size: 16px;
            font-weight: bold;
        }

        /* Navigation Bar */
        .main-nav {
            background: linear-gradient(to right, #02a1bb, #34b6c7);
            padding: 0;
        }

        .main-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .main-nav li a {
            display: block;
            padding: 20px 25px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .main-nav li a:hover,
        .main-nav li.active a {
            background: rgba(255, 255, 255, 0.1);
            color: #e4e4e4;
        }

        /* Search */
        .search-form {
            display: flex;
            align-items: center;
        }

        .search-input {
            padding: 8px 12px;
            border: none;
            border-radius: 4px 0 0 4px;
            color: #2eb6ca;
            font-weight: bold;
        }

        .search-btn {
            padding: 8px 15px;
            border: none;
            background: #0eaac5;
            color: white;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        /* Main Content */
        main {
            min-height: 60vh;
            padding: 40px 0;
        }

        h1 {
            color: #686159;
            font-size: 28px;
            font-weight: normal;
            margin-bottom: 30px;
            text-align: center;
        }

        article {
            background: white;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid #5bc7d6;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        article h2 {
            color: #02a1bb;
            font-size: 22px;
            margin-bottom: 20px;
        }

        article h3 {
            color: #686159;
            font-size: 18px;
            margin: 25px 0 15px;
        }

        article h4 {
            color: #686159;
            font-size: 16px;
            margin: 20px 0 10px;
        }

        article p {
            color: #312924;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        article ul, article ol {
            margin: 15px 0;
            padding-left: 30px;
        }

        article li {
            color: #312924;
            margin-bottom: 8px;
        }

        /* Transition Section */
        .transition-section {
            background: #ceebee;
            padding: 30px;
            margin: 40px 0;
            border-radius: 8px;
            border-left: 4px solid #02a1bb;
        }

        .transition-section p {
            color: #453e39;
            font-size: 15px;
            margin: 0;
        }

        /* Links Section */
        .links-section {
            background: white;
            padding: 40px;
            border: 1px solid #5bc7d6;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .links-section h3 {
            color: #02a1bb;
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dotted #ccc;
        }

        .links-grid {
            columns: 2;
            column-gap: 40px;
        }

        .links-grid ul {
            list-style: none;
            margin: 0;
            padding: 0;
            break-inside: avoid;
            margin-bottom: 30px;
        }

        .links-grid li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .links-grid li:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #02a1bb;
            font-weight: bold;
            font-size: 16px;
        }

        .links-grid a {
            color: #312924;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .links-grid a:hover {
            color: #02a1bb;
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: #fcfaf4;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 1px dotted #ccc;
        }

        .footer-content {
            text-align: center;
        }

        .footer-menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-menu a {
            color: #8c8c8c;
            text-decoration: none;
            font-size: 12px;
            padding: 0 10px;
            border-left: 1px solid #8c8c8c;
        }

        .footer-menu a:first-child {
            border-left: none;
        }

        .footer-menu a:hover {
            color: #707070;
        }

        .footer-bottom {
            color: #8c8c8c;
            font-size: 11px;
            margin-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .main-nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .main-nav li a {
                padding: 15px 20px;
                font-size: 14px;
            }

            h1 {
                font-size: 24px;
            }

            article {
                padding: 25px 20px;
            }

            .links-grid {
                columns: 1;
            }

            .footer-menu {
                flex-direction: column;
                gap: 10px;
            }

            .footer-menu a {
                border-left: none;
                padding: 5px 0;
            }

            .search-form {
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }
        }

        @media (max-width: 480px) {
            .main-nav ul {
                flex-direction: column;
                width: 100%;
            }

            .main-nav li {
                width: 100%;
            }

            .main-nav li a {
                text-align: center;
                padding: 12px;
            }

            h1 {
                font-size: 20px;
            }

            article {
                padding: 20px 15px;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 25px 20px;
            }
        }
    