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

        body {
            font-family: 'Exo', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

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

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

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

        .logo img {
            max-width: 200px;
            height: auto;
        }

        .header-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .content-section {
            padding: 40px 0;
        }

        .two-column {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .two-column .text-col {
            flex: 1;
            min-width: 300px;
        }

        .two-column .image-col {
            flex: 0 0 400px;
            min-width: 300px;
        }

        .image-col img {
            width: 100%;
            height: auto;
        }

        h1, h2, h3 {
            margin-bottom: 20px;
            line-height: 1.3;
        }

        h1 {
            font-size: 2.5em;
            color: #0f265c;
        }

        h2 {
            font-size: 2em;
            color: #0f265c;
        }

        h3 {
            font-size: 1.5em;
            color: #0f265c;
        }

        p {
            margin-bottom: 15px;
        }

        a{color: #0f265c; text-decoration: underline;}
        a:hover{color:#051333; text-decoration: none; }

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

        li {
            margin-bottom: 8px;
        }

        .button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #ce161a;
            color: #ffffff;
            text-decoration: none;
            border-radius: 3px;
            margin: 30px 0;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #a51216;
        }

        .info-block {
            background-color: #f6f6f6;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #cd191f;
        }

        .info-block h2 {
            background: #CD191F;
            padding: 10px;
            text-align: center;
            color: #fff;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }

        .workshop-section {
            background-color: #0f265c;
            color: #fff;
            padding: 60px 0;
            margin: 60px 0;
        }

        .workshop-section h3 {
            color: #fff;
        }

        .workshop-section a {
            color: #fff;
            text-decoration: underline;
        }

        .workshop-content {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }

        .workshop-image {
            flex: 1;
            min-width: 300px;
        }

        .workshop-image img {
            width: 100%;
            height: auto;
        }

        .workshop-text {
            flex: 1;
            min-width: 300px;
        }

        .blog-section {
            background-color: #cd1719;
            color: #fff;
            padding: 60px 0;
            margin: 60px 0;
        }

        .blog-section h3 {
            color: #fff;
            text-align: center;
            margin-bottom: 40px;
        }

        .blog-items {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .blog-item {
            flex: 1;
            min-width: 250px;
            background-color: #fff;
            color: #333;
        }

        .blog-item img {
            width: 100%;
            height: auto;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            color: #999;
            font-size: 0.9em;
            margin-bottom: 10px;
        }

        .blog-title {
            color: #0f265c;
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        footer {
            background-color: #0f265c;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-columns {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
        }

        .footer-col h5 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2em;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col a {
            color: #fff;
            text-decoration: none;
        }

        .footer-col a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }

            h2 {
                font-size: 1.5em;
            }

            .two-column,
            .workshop-content {
                flex-direction: column;
            }

            .two-column .image-col {
                flex: 1;
                order: 2;
            }
        }