main {
    padding: 20px;
    height: auto;
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    margin-top: 100px;
    background-color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-family: 'Familjen Grotesk', sans-serif;
}

.article-title, .article-date, h1, h2, h4 {
    margin: 0;
    padding-bottom: 20px;
}

h1, h2, h4 {
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
}

p {
    margin: 20px 0;
    font-size: 14px;
    font-weight: 200;
    text-transform: none;
    color: #fff;
    line-height: 1.6;
    text-align: justify;
}

.article-date {
    font-size: 12px;
    font-weight: 200;
    color: #aaa;
}

.article-content {
    text-transform: none;
}

.article-content ul {
    list-style-type: disc;
    margin-left: 40px;
    font-size: 14px;
    font-weight: 200;
    color: #fff;
}

.article-content ul li {
    margin-top: 10px;
}

.article-image, .embedded-image {
    width: 100%;
    max-width: 700px; 
    height: auto;
    margin-top: 10px;
}

.embedded-image {
    display: block;
    margin: 10px auto;
}

.video-wrapper {
    margin: 20px 0;
    max-width: 700px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 30px;
    left: 50px;
    width: 100%;
    height: 100%;
    border: 0;
}

.articles-side-by-side {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Add some space between the items */
}

.articles-side-by-side .article-image, .articles-side-by-side .embedded-image, .articles-side-by-side .video-wrapper {
    flex: 0 0 48%; /* Adjusts the width of each item */
    max-width: 48%;
}

strong {
    font-weight: bold;
}

.article-end-border {
    border-bottom: 1px solid white;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Add styles for the table */
/*table {
    width: 100%;
    max-width: 500px;
    margin: 20px 0;
    border-collapse: collapse;
    color: #fff;
}

table, th, td {
    border: 1px solid #fff;
}

td {
    padding: 10px;
}

td.left {
    text-align: left;
    font-weight: bold;
}

td.right {
    text-align: right;
}

td.right span {
    font-weight: normal;
}*/

/* Big footer styles */
:root {
    --primary: #1E1E1E;
    --dark: #121212;
    --pure: #ffffff;
    --gray: #1d1d1d;
    --mild: #b9b8b8;
}

.second-container {
    width: 1460px;
    max-width: 90%;
    margin: 0 auto;
}

.social div {
    border: 2px solid var(--pure);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    opacity: 0;
    transition: background 0.5s ease-in-out;
}

.social div i {
    color: #fff;
    transition: color 0.5s ease-in-out;
}

@keyframes moveIn {
    from {
        transform: translateX(-100px);
    }
    to {
        transform: translateX(0px);
        opacity: 1;
    }
}

.social svg path {
    fill: var(--pure);
}

.social div:hover {
    background: var(--pure);
}

.social div:hover i {
    color: var(--dark);
}

.hero {
    position: relative;
}

.social {
    position: absolute;
    left: 0;
    top: 0;
    border-right: 1px solid var(--gray);
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 90vh;
}

.big-footer {
    padding: 60px 0;
}

.big-footer > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.big-footer .footer-two-copyright span {
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
    margin-left: 30px;
}

.big-footer .footer-two-copyright img {
    height: 30px;
}

.big-footer h1 {
    font-size: 18px;
    position: relative;
    margin-bottom: 30px;
}

.big-footer h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    display: block;
    width: 60px;
    height: 2px;
    background: var(--pure);
}

.big-footer ul {
    list-style-type: none;
}

.big-footer ul li:nth-child(even) {
    margin: 10px 0;
}

.big-footer ul li a {
    color: var(--mild);
    text-decoration: none;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.big-footer ul li a:hover {
    color: #fff;
}

.big-footer .big-footer-socials a {
    margin-right: 20px;
    font-size: 22px;
    color: var(--mild);
}

.big-footer .big-footer-socials a:hover {
    color: #fff;
}














/* Main Block Styling */
.information_block {
    background-color: black;
    padding: 20px;
    color: white;
    font-family: 'Familjen Grotesk', sans-serif;
    border-radius: 10px;
    max-width: 1200px; /* Increased max-width for a wider block */
    margin: 140px auto; /* Adjust this value to increase space from header */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Tabs Section */
.information_block_tabs {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.information_block_tab {
    color: #969696;
    font-size: 18px;
    cursor: pointer;
    margin-right: 20px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

.information_block_tab.active {
    color: #fff;
}

.information_block_tab.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

/* Tab Content Layout */
.information_block_layout {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}

/* Left Section (Text and Table) */
.information_block_left {
    flex: 1;
}

.information_block_text p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
    margin-bottom: 20px;
}

.information_block_table_wrapper {
    margin-top: 10px;
}

.information_block_table {
    width: 100%;
    border-collapse: collapse;
}

.information_block_table td {
    padding: 10px;
    border-bottom: 1px solid #fff;
    text-align: left;
}

.information_block_table td:first-child {
    text-align: left;
    font-weight: bold;
}

.information_block_table td:last-child {
    text-align: right;
    font-weight: normal;
    color: #979797;
}

/* Right Section (Image) */
.information_block_right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.information_block_image img {
    max-width: 90%; /* Adjusted image size to be larger */
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .information_block_layout {
        flex-direction: column;
    }

    .information_block_left, .information_block_right {
        flex: none;
        width: 100%;
    }
}










/* Article contact form in shop */
/* Contact Form Block */
.contact_form_shop_article {
    background-color: black;
    color: white;
    font-family: 'Familjen Grotesk', sans-serif;
    border-radius: 10px;
    max-width: 1200px; /* Adjust width same as previous block */
    margin: 40px auto; /* Space between the blocks */
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.contact_form_shop_article h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    flex-direction: column;
}

.form_group label {
    font-size: 16px;
    margin-bottom: 8px;
}

.form_group input, .form_group textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

.form_group input[type="tel"],
.form_group input[type="text"],
.form_group input[type="email"] {
    width: 100%;
}

.form_group textarea {
    width: 100%;
    resize: vertical;
}

/* Submit Button Styling (Smaller & Centered) */
.submit_button {
    font: 14px 'Familjen Grotesk', sans-serif; /* Smaller font size */
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 8px 30px; /* Smaller padding */
    margin-top: 20px;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-in-out 0.4s forwards;
    color: #fff;
    width: 25%; /* 1/4th of the container width */
    margin-left: auto; /* Centering horizontally */
    margin-right: auto; /* Centering horizontally */
}

/* Hover Effect for Button */
.submit_button:hover span {
    color: #000;
}

.submit_button .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.submit_button:hover .hover {
    transform: translateY(0);    
}

.submit_button a {
    text-decoration: none;
    color: #fff;
}

/* Keyframes for button animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact_form_shop_article {
        padding: 20px;
    }

    .contact_form {
        gap: 15px;
    }

    .submit_button {
        width: 50%; /* Adjust button width on smaller screens */
    }
}



