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

body {
    font-family: 'Roboto Condensed', Roboto, sans-serif;
    background-color: #ffffff;
    color: #666666;
    line-height: 1.6;
}

:root {
    --primary-color: #5ACAC5;
}

/* Header Styles */
header {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.logo-top {
    width: 310px;
    height: 180px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 155px;
    padding-bottom: 55px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.logo-top a {
    display: block;
    line-height: 0;
}

.header-container {
    width: 100%;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    height: 179px;
}



.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: 200px;
}

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

.main-nav ul li a {
    color: #95989D;
    text-decoration: none;
    font-size: 28px;
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.main-nav ul li a:hover {
    color: #333333;
}

.header-right {
    width: 150px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 120px;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* FAQ Accordion */
.faq-container {
    max-width: 100%;
}

.faq-item {
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #eeeeee;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #333333;
    min-width: 24px;
    text-align: center;
    transition: all 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff6b6b;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 30px 0 74px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 30px 25px 74px;
}

.faq-answer-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
}

/* Footer Styles */
footer {
    background-color: #1f1f23;
    color: #999999;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1px 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-links ul {
    list-style: none;
    margin-bottom: 30px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-links ul li a:hover {
    color: #5ACAC5;
}

.footer-links .footer-legal {
    margin-top: 30px;
}

.footer-links .footer-legal li a {
    font-size: 13px;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-divider {
    width: 1px;
    background-color: #404040;
    height: 100%;
}

.footer-social h3 {
    font-size: 18px;
    font-weight: 400;
    color: #5ACAC5;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #808080;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #5ACAC5;
}

.language-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5ACAC5;
    margin-bottom: 35px;
    font-size: 14px;
    cursor: pointer;
}

.current-language {
    font-weight: 500;
}

.newsletter-section h3 {
    font-size: 18px;
    font-weight: 400;
    color: #5ACAC5;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.newsletter-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
    font-family: 'Roboto Condensed', Roboto, sans-serif;
}

.newsletter-btn:hover {
    background-color: #5ACAC5;
    border-color: #5ACAC5;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    background-color: #0a0a0c;
}

.footer-bottom p {
    font-size: 11px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 80px;
    }
    
    .main-nav {
        margin-left: 100px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-divider {
        display: none;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 20px 30px;
    }

    .main-nav {
        margin-left: 50px;
    }

    .main-nav ul {
        gap: 50px;
    }

    .main-nav ul li a {
        font-size: 24px;
    }

    main {
        padding: 60px 30px 100px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .diagonal-stripe {
        width: 250px;
        height: 140px;
        padding-right: 120px;
        padding-bottom: 45px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .logo-hexagon {
        width: 60px;
        height: 70px;
    }

    .logo-text {
        font-size: 18px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        display: none;
        padding: 20px;
        margin-left: 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid #e0e0e0;
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 10px;
        font-size: 22px;
    }

    .header-right {
        display: none;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    main {
        padding: 40px 20px 80px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px 0 64px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 64px;
    }

    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .diagonal-stripe {
        width: 200px;
        height: 120px;
        padding-right: 100px;
        padding-bottom: 35px;
    }

    .logo-hexagon {
        width: 50px;
        height: 60px;
    }

    .logo-text {
        font-size: 16px;
    }

    h1 {
        font-size: 24px;
    }

    .main-nav ul li a {
        font-size: 20px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 15px 0 55px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px 55px;
    }
}