     <style>
        :root {
            --primary-color: #3a1c71;
            --secondary-color: #d76d77;
            --accent-color: #ffaf7b;
            --text-color: #333;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ef 100%);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 10px 0; /* Reduced padding slightly */
            position: relative; /* Changed to relative for normal flow, use 'sticky' or 'fixed' if needed */
            /* top: 0; */ /* Removed if not fixed/sticky */
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000; /* Ensure header is above other elements */
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        .logo {
            font-size: 24px; /* Adjusted size */
            font-weight: 700;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px; /* Adjusted size */
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px; /* Adjusted spacing */
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0; /* Add padding for better click area */
        }
        
        .nav-links a:hover, .nav-links a.active { /* Style for active link */
            color: var(--accent-color);
            border-bottom: 2px solid var(--accent-color); /* Example indicator */
             padding-bottom: 3px; /* Adjust padding for border */
        }
        
        .mobile-menu {
            display: none;
            cursor: pointer;
        }
        
        .mobile-menu div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        .hero {
            padding: 80px 0; /* Increased padding */
            text-align: center;
            background-image: url('https://via.placeholder.com/1200x600/3a1c71/ffffff?text=Galakonkurs+Art+Showcase'); /* Placeholder image */
            background-size: cover;
            background-position: center;
            position: relative;
            color: white;
            margin-top: 0; /* Ensure no gap below header if header is relative */
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(58, 28, 113, 0.6); /* Darker overlay using primary color */
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.2rem; /* Adjusted size */
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent-color);
            color: var(--dark-color);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            background: #ff9d5c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary { /* Optional secondary button style */
             background: transparent;
             color: var(--accent-color);
             border: 2px solid var(--accent-color);
        }

        .btn-secondary:hover {
            background: var(--accent-color);
            color: var(--dark-color);
        }
        
        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }
        .categories, .about, .testimonials, .timeline, .jury, .faq, .cta, .contact {
             padding: 80px 0; /* Kept for backward compatibility if needed */
        }


        .about { background: white; }
        .testimonials { background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ef 100%); }
        .timeline { background: white; }
        .jury { background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ef 100%); }
        .faq { background: white; }
        .contact { background: white; }

        .section-title {
            text-align: center;
            margin-bottom: 60px; /* Increased margin */
        }
        
        .section-title h2 {
            font-size: 2.8rem; /* Adjusted size */
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px; /* Increased width */
            height: 4px; /* Increased height */
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666; /* Slightly darker grey */
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax */
            gap: 30px;
        }
        
        .category-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(58, 28, 113, 0.1); /* Shadow color related to primary */
        }
        
        .category-image {
            height: 200px;
            overflow: hidden;
        }
        
        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .category-card:hover .category-image img {
            transform: scale(1.1);
        }
        
        .category-content {
            padding: 25px; /* Increased padding */
            text-align: center;
            flex-grow: 1; /* Make content grow */
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Push button down */
        }

        .category-content-text {
            margin-bottom: 20px; /* Space before button */
        }
        
        .category-content h3 {
            font-size: 1.4rem; /* Adjusted size */
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .category-content p {
            color: #777;
            margin-bottom: 0; /* Remove default bottom margin */
            font-size: 0.95rem;
        }

        .category-content .btn {
            margin-top: auto; /* Push button to bottom */
            font-size: 0.9rem;
            padding: 10px 25px;
        }

        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px; /* Add gap */
        }
        
        .about-text {
            flex: 1;
            min-width: 300px; /* Ensure text doesn't get too squished */
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .about-text p {
            margin-bottom: 15px;
            color: var(--text-color);
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center; /* Center image */
        }
        
        .about-image img {
            max-width: 100%; /* Ensure image scales */
            height: auto;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            border-left: 5px solid var(--secondary-color); /* Accent border */
        }
        
        .testimonial-card::before {
            content: '\201C'; /* Use unicode quote */
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 5rem;
            color: rgba(215, 109, 119, 0.1); /* Secondary color quote */
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }
        
        .testimonial-content {
            position: relative;
            margin-bottom: 20px;
            font-style: italic;
            color: #555;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--light-color);
        }

        .testimonial-author h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .testimonial-author p {
             margin: 0;
             font-size: 0.9rem;
             color: #777;
        }
        
        .timeline-container {
            position: relative;
            max-width: 900px; /* Wider container */
            margin: 0 auto;
        }
        
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            z-index: 0;
            border-radius: 2px;
        }
        
        .timeline-item {
            padding: 20px 40px; /* Increased padding */
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 24px; /* Larger circle */
            height: 24px;
            right: -12px; /* Adjusted position */
            background-color: var(--accent-color);
            border: 4px solid var(--secondary-color);
            top: 25px; /* Adjusted position */
            border-radius: 50%;
            z-index: 1;
        }
        
        .left {
            left: 0;
            padding-right: 60px; /* More space */
        }
        
        .right {
            left: 50%;
            padding-left: 60px; /* More space */
        }
        
        .right::after {
            left: -12px; /* Adjusted position */
        }
        
        .timeline-content {
            padding: 25px; /* Increased padding */
            background-color: white;
            position: relative;
            border-radius: 8px; /* Softer radius */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
            border: 1px solid #eee;
        }

        .timeline-content h3 {
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
        }

        .timeline-content p {
             margin-bottom: 0;
             color: #666;
             font-size: 0.95rem;
        }
        
        .jury-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .jury-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .jury-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(58, 28, 113, 0.1); /* Shadow color related to primary */
        }
        
        .jury-image {
            height: 280px; /* Taller image */
            overflow: hidden;
            background-color: #eee; /* Placeholder background */
        }
        
        .jury-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .jury-content {
            padding: 25px; /* Increased padding */
        }
        
        .jury-content h3 {
            margin-bottom: 5px;
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .jury-content p {
            color: #777;
            margin-bottom: 15px; /* Spacing before social links */
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0; /* Reset padding */
            margin-top: 15px;
        }
        
        .social-links li {
            margin: 0 8px; /* Adjusted spacing */
        }
        
        .social-links a {
            color: #aaa; /* Lighter grey */
            font-size: 20px;
            transition: all 0.3s ease;
            display: inline-block; /* Needed for potential icons */
            width: 30px; /* Ensure consistent size if using icons */
            height: 30px;
            line-height: 30px;
            text-align: center;
        }
        
        .social-links a:hover {
            color: var(--secondary-color);
            transform: scale(1.1);
        }
        
        .faq {
            padding: 80px 0;
            background: white;
        }
        
        .accordion {
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden; /* Clip items inside */
        }
        
        .accordion-item {
            border-bottom: 1px solid #e0e0e0;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }
        
        .accordion-header {
            background: white;
            padding: 20px 25px; /* Increased padding */
            cursor: pointer;
            position: relative;
            font-weight: 600;
            transition: background-color 0.3s ease;
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        
        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--secondary-color);
            transition: transform 0.3s ease;
        }
        
        .accordion-header.active::after {
            content: '?'; /* Use minus sign */
            transform: translateY(-50%) rotate(180deg);
        }
        
        .accordion-header:hover {
            background: #f9f9f9;
        }
        
        .accordion-content {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Smoother transition */
            background: #fdfdfd; /* Slightly off-white background */
            color: #555;
        }
        
        .accordion-content.active {
            padding: 25px;
            max-height: 500px; /* Adjust as needed */
        }
        .accordion-content p {
            margin: 0;
        }
        
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.8rem; /* Adjusted size */
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px; /* Increased margin */
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            opacity: 0.9;
        }
        
        .cta .btn {
            background: white;
            color: var(--primary-color);
            padding: 15px 40px; /* Larger button */
            font-size: 1.1rem;
        }
        
        .cta .btn:hover {
            background: #f8f9fa;
            color: var(--secondary-color);
        }

        /* Contact Section Styles */
        .contact {
            background: white; /* Added background */
        }
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start; /* Align items top */
            margin-bottom: 25px;
        }

        .contact-item span { /* Placeholder for icon */
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 15px;
            width: 30px; /* Space for icon */
            text-align: center;
            line-height: 1.4; /* Align text better */
        }

        .contact-item div h3 {
            margin: 0 0 5px 0;
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .contact-item div p {
            margin: 0;
            color: #666;
        }
         .contact-item div a {
             color: var(--secondary-color);
             text-decoration: none;
         }
         .contact-item div a:hover {
             text-decoration: underline;
         }

        .contact-form {
            flex: 1.5; /* Make form slightly wider */
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 5px rgba(215, 109, 119, 0.3);
        }

        .form-group textarea {
            resize: vertical; /* Allow vertical resize only */
        }

        .contact-form .btn {
            width: auto; /* Don't make button full width */
        }

        
        footer {
            background: var(--dark-color);
            color: #ccc; /* Lighter text */
            padding: 60px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjust minmax */
            gap: 40px; /* Increased gap */
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem; /* Larger heading */
            margin-bottom: 25px; /* Increased margin */
            position: relative;
            padding-bottom: 10px;
            color: white;
            font-weight: 600;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px; /* Longer underline */
            height: 3px; /* Thicker underline */
            background: var(--secondary-color);
            border-radius: 1px;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0; /* Reset padding */
        }
        
        .footer-column ul li {
            margin-bottom: 12px; /* Increased spacing */
        }
        
        .footer-column ul li a {
            color: #aaa; /* Lighter grey */
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-column ul li a:hover {
            color: white;
            padding-left: 8px; /* Indent on hover */
        }

        /* Footer social links styling */
         .footer-column .social-links {
             justify-content: flex-start; /* Align left */
             padding: 0;
             margin-top: 0; /* Reset margin if needed */
         }
         .footer-column .social-links li {
             margin: 0 15px 10px 0; /* Spacing for horizontal list */
             display: inline-block; /* Make them inline */
         }
          .footer-column .social-links li a {
             color: #aaa;
             font-size: 1rem; /* Adjust size if needed */
             text-decoration: none; /* Remove underline */
             padding-left: 0; /* Reset padding */
             /* If using Font Awesome, add display: inline-block and text-align center if needed */
         }
          .footer-column .social-links li a:hover {
             color: white;
             padding-left: 0; /* Reset padding */
             transform: scale(1.1);
         }
         .footer-column .social-links i { /* Style for potential icons */
             margin-right: 8px;
             vertical-align: middle;
             /* Font Awesome needs to be linked for this */
             /* font-family: "Font Awesome 6 Brands"; */
             /* font-weight: 400; */
         }
        
        .copyright {
            text-align: center;
            padding-top: 30px; /* Increased padding */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #888;
        }
        .copyright a {
            color: #aaa;
            text-decoration: none;
        }
        .copyright a:hover {
            color: white;
            text-decoration: underline;
        }
        
        @media screen and (max-width: 992px) {
            .category-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .timeline-container::after {
                left: 31px;
            }
             .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
             .timeline-item::after {
                left: 20px; /* Adjusted for thinner line */
                width: 20px;
                height: 20px;
                right: auto;
             }
            .left, .right {
                left: 0;
                padding-left: 70px;
                padding-right: 25px;
            }
            .right::after {
                 left: 20px; /* Adjusted */
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed; /* Use fixed for full height */
                right: -100%; /* Start off-screen */
                top: 0;
                background: rgba(58, 28, 113, 0.98); /* Semi-transparent background */
                backdrop-filter: blur(5px);
                height: 100vh;
                width: 80%; /* Don't take full width */
                max-width: 300px; /* Max width */
                flex-direction: column;
                align-items: center;
                justify-content: center; /* Center vertically */
                padding: 50px 20px;
                transition: right 0.5s ease-out;
                pointer-events: none;
                z-index: 999; /* Below header but above content */
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            
            .nav-links.active {
                right: 0; /* Slide in */
                pointer-events: all;
            }
            
            .nav-links li {
                margin: 20px 0; /* Increased spacing */
                opacity: 0; /* For animation */
                transform: translateX(20px); /* For animation */
            }

             .nav-links.active li {
                 opacity: 1;
                 transform: translateX(0);
                 transition: opacity 0.3s ease-out, transform 0.3s ease-out;
             }
             /* Stagger animation */
             .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
             .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
             .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
             .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
             .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
             .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
             .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
             .nav-links.active li:nth-child(8) { transition-delay: 0.45s; } /* Added for 8th item */
            
            .mobile-menu {
                display: block;
                z-index: 1001; /* Above nav menu */
                position: relative; /* Ensure it's clickable */
            }
            
            /* Burger animation */
            .mobile-menu.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .mobile-menu.active div:nth-child(2) {
                opacity: 0;
                 transform: scale(0.1);
            }
            .mobile-menu.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                 font-size: 2.2rem;
            }

            .about-content {
                flex-direction: column-reverse; /* Image first */
                text-align: center;
            }

            .about-text {
                padding: 0;
                margin-top: 30px; /* Add margin when stacked */
                text-align: left; /* Reset text align */
            }

            .about-image {
                 margin-bottom: 0; /* Remove bottom margin */
            }
            
            .contact-content {
                 flex-direction: column;
            }

            .footer-container {
                 grid-template-columns: 1fr; /* Stack columns */
                 text-align: center;
            }
            .footer-column h3::after {
                 left: 50%;
                 transform: translateX(-50%);
            }
             .footer-column .social-links {
                 justify-content: center; /* Center social links */
            }
        }

        @media screen and (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
             .section-title h2 {
                 font-size: 1.8rem;
            }
             .category-grid {
                grid-template-columns: 1fr; /* Single column */
            }
             .testimonial-grid {
                grid-template-columns: 1fr; /* Single column */
            }
            .jury-grid {
                grid-template-columns: 1fr; /* Single column */
            }
             .timeline-item, .left, .right {
                 padding-left: 50px;
                 padding-right: 15px;
             }
             .timeline-container::after {
                 left: 20px;
             }
             .timeline-item::after {
                 left: 9px; /* Adjusted position */
             }
        }

.accordion-header {
    display: block; /* Позволяет кликать по всей строке */
    cursor: pointer;
    position: relative;
}

/* Скрытие стандартного маркера */
.accordion-header::-webkit-details-marker {
    display: none;
}
.accordion-header {
    list-style: none;
}

/* Добавление своего маркера +/- */
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #d76d77;
    transition: transform 0.3s ease;
}

details[open] > summary.accordion-header::after {
    content: '−';
}

.accordion-content {
    padding: 20px 25px;
}

    </style>
