@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    font-family: "Inter", sans-serif;
    background: #FFF5F1;
    color: #8d706e;
    min-height: 100vh;
    font-size: 18px;
    line-height: 28px;
}

h1, h2, h3, h4, h5 ,h6 {
    color: #2F0303;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

/* Header Styles */
.t2mq-topbar {
    background: #FFF5F1;
    backdrop-filter: blur(10px);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.t2mq-title {
    text-align: start;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 36px;
}

.t2mq-text {
    text-align: start;
}

.t2mq-text + .t2mq-text {
    margin-top: 20px;
}

.t2mq-text strong {
    font-weight: 700;
    color: #2F0303;
}

.t2mq-topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.t2mq-symbol {
    color: #2F0303;
    display: block;
    text-decoration: none;
}

.t2mq-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.t2mq-nav-link {
    font-size: 16px;
    line-height: 24px;
    color: #2F0303;
    text-decoration: none;
    font-weight: 500;
    transition: 0.5s ease;
    border-bottom: 2px solid transparent;
}

.t2mq-nav-link:hover {
    border-color: #2F0303;
}

.t2mq-nav-link--secondary {
    color: #ffffff;
    padding: 12px 16px;
    background: #2F0303;
    border-radius: 12px;
    transition: 0.3s ease;
}

.t2mq-nav-link--secondary:hover {
    box-shadow: 0px 4px 12px #2F030390;
}

.t2mq-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.t2mq-mobile-menu-bar {
    width: 25px;
    height: 3px;
    background: #2F0303;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

.t2mq-mobile-menu-toggle.t2mq-active .t2mq-mobile-menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
}

/* intro Section */
.t2mq-intro {
    padding: 40px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.t2mq-intro.t2mq-intro-about {
    padding: 40px 20px 0;
}

.t2mq-intro-content {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.t2mq-intro-title {
    font-size: 42px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 60px;
}

.t2mq-intro-description {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 70px;
}

.t2mq-intro-about .t2mq-intro-description {
    margin-bottom: 0;
}

.t2mq-intro-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 80px;
}

.t2mq-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* matches Section */
.t2mq-matches {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.t2mq-match-card {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 64px;
    transition: 0.3s !important;
}

.t2mq-match-card:hover {
    transform: translateY(-5px);
}

.t2mq-match-card:last-child {
    margin-bottom: 0;
}

.t2mq-match-image {
    border-radius: 16px;
    overflow: hidden;
}

.t2mq-match-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2mq-match-content {
    align-content: center;
}

.t2mq-match-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Discover Section */

.t2mq-discover {
    max-width: 1328px;
    margin: 0 auto;
    padding: 40px 20px;
}

.t2mq-discover-card {
    background: #2F03030D;
    padding: 70px 64px 80px;
    border-radius: 16px;
}

.t2mq-discover-card + .t2mq-discover-card {
    margin-top: 80px;
}

.t2mq-discover-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    list-style-type: none;
    gap: 24px 48px;
    margin-top: 48px;
}

.t2mq-discover-item {
    background: #ffffff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #2F0303;
}

/* information Section */

.t2mq-information {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.t2mq-information-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    padding-bottom: 60px;
}

.t2mq-information-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px 60px;
    margin-bottom: 80px;
}

.t2mq-information-content p {
    font-size: 24px;
    line-height: 34px;
}

.t2mq-information-content p + p {
    margin-top: 30px;
}

.t2mq-information-image {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 -64px;
}

.t2mq-information-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2mq-review-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.t2mq-review-item {
    background: #2F03030D;
    border-radius: 16px;
    padding: 24px;
}

.t2mq-review-title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.t2mq-review-item:nth-child(odd) .t2mq-review-title::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2F030373;
}

.t2mq-review-item:nth-child(even) .t2mq-review-title::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #2F030373;
}


/* Footer */
.t2mq-footer {
    padding: 24px 20px 60px;
}

.t2mq-footer-container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
}

.t2mq-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.t2mq-footer-info-nav {
    display: flex;
    align-items: center;
    gap: 20px 32px;
}

.t2mq-footer-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2F0303;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: 0.5s ease;
}

.t2mq-footer-item:hover {
    border-color: #2F0303;
}

.t2mq-footer-copyright {
    font-size: 14px;
    line-height: 24px;
}

.t2mq-footer-container ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 10px 20px;
    padding-left: 24px;
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0;
}

.t2mq-page-material {
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.t2mq-info-container h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.t2mq-info-container h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.t2mq-info-container h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.t2mq-info-container ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

.t2mq-info-container p {
    margin-bottom: 20px;
}

.t2mq-info-container strong {
    text-decoration: none;
    color: #2F0303;
    font-weight: 700;
}


/* Mobile Responsiveness */
@media (max-width: 1320px) {
    .t2mq-information-image {
        margin: 0;
    }
}

@media (max-width: 1024px) {
    body {
        font-size: 16px;
        line-height: 28px;
    }

    .t2mq-intro {
        padding: 24px 20px 40px;
    }

    .t2mq-intro-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 34px;
    }

    .t2mq-intro-description {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .t2mq-intro-image {
        margin-bottom: 40px;
    }

    .t2mq-title {
        text-align: start;
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .t2mq-matches {
        padding: 20px;
    }

    .t2mq-match-card {
        gap: 24px 40px;
        margin-bottom: 40px;
    }

    .t2mq-discover-card {
        padding: 40px 24px;
    }

    .t2mq-discover-list {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .t2mq-discover-item {
        font-size: 16px;
        line-height: 26px;
        padding: 12px;
    }

    .t2mq-discover-card + .t2mq-discover-card {
        margin-top: 40px;
    }

    .t2mq-information {
        padding: 20px 20px 40px;
    }

    .t2mq-information-grid {
        gap: 40px;
    }

    .t2mq-information-title {
        padding-bottom: 24px;
    }

    .t2mq-footer-info {
        flex-direction: column;
    }
}


@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 28px;
    }

    .t2mq-topbar {
        position: relative;
        padding: 20px 0;
    }

    .t2mq-topbar-container {
        padding: 0 15px;
    }

    .t2mq-mobile-menu-toggle {
        display: flex;
    }

    .t2mq-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFF5F1;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        z-index: 1000;
    }

    .t2mq-nav.t2mq-active {
        display: flex;
        animation: t2mq-slideDown 0.3s ease-out;
    }

    @keyframes t2mq-slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .t2mq-nav-link {
        text-decoration: none;
        font-weight: 500;
        padding: 10px 0;
        transition: color 0.3s ease;
    }
    
    .t2mq-nav-link--secondary {
        color: #ffffff;
        padding: 12px 16px;
        background: #2F0303;
    }

    .t2mq-nav-link:last-child {
        border-bottom: none;
    }

    .t2mq-review-title {
        font-size: 20px;
        line-height: 28px;
    }

    .t2mq-match-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .t2mq-information-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .t2mq-information-title {
        font-size: 24px;
        line-height: 32px;
    }

    .t2mq-information-content p {
        font-size: 18px;
        line-height: 28px;
    } 

    .t2mq-information-content p + p {
        margin-top: 20px;
    }

    .t2mq-footer {
        padding: 20px 20px 40px;
    }

    .t2mq-footer-container {
        gap: 40px;
        align-items: center;
        flex-direction: column;
    }

    .t2mq-footer-info-nav {
        text-align: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .t2mq-footer-container ul {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .t2mq-page-material {
        padding: 24px 20px 40px;
    }

    .t2mq-info-container h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .t2mq-info-container h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .t2mq-info-container h3 {
        font-size: 18px;
        line-height: 26px;
    }
}