:root {
    --tai-bg: #ffff;
    --tai-bg-alt: #f9f8f6;
    --tai-subtitle: #243855;
    --tai-heading: #243855;
    --tai-accent: #6232f8;
    --tai-text: #5D6B81;
    --tai-blocks: #f8f6f9;
    --tai-footer: #121A46;
    --tai-banner-span: #FF3838;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--tai-text);
    background-color: var(--tai-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 500 !important;
}

.tai-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.tai-header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.tai-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tai-logo {
    font-family: 'Koulen', cursive;
    font-size: 26px;
    color: var(--tai-heading);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.tai-logo img {
    margin-right: 5px;
}

.tai-logo span {
    color: var(--tai-accent);
}

.tai-nav {
    display: flex;
    align-items: center;
}

.tai-nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.tai-nav-item {
    margin-left: 30px;
}

.tai-nav-link {
    color: var(--tai-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.tai-nav-link:hover {
    color: var(--tai-accent);
}

.tai-btn {
    background-color: var(--tai-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
}

.tai-btn:hover {
    background-color: #5026d0;
}

.tai-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--tai-heading);
    cursor: pointer;
}


.tai-banner {
    padding: 210px 0 150px 0;
    background: url('../images/banner-one-shape-bg.jpg') left bottom no-repeat;
    background-size: cover;
}

.tai-banner-content {
    display: flex;
    align-items: center;
}

.tai-banner-text {
    flex: 1;
}

.tai-subtitle {
    color: var(--tai-subtitle);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tai-subtitle-icon {
    width: 20px;
    height: 20px;
    margin-right: 7px;
}

.tai-section-alt {
    padding: 80px 0;
}

.tai-title {
    font-family: 'Koulen', cursive;
    font-size: 100px;
    color: var(--tai-heading);
    line-height: 1;
    margin-bottom: 20px;
    width: 100%;
}

.tai-title.cust {
    font-size: 50px;
}

.tai-title span {
    color: var(--tai-banner-span);
    text-transform: uppercase;
}

.tai-banner-desc {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.tai-banner-btns {
    display: flex;
    gap: 15px;
}

.tai-btn-outline {
    background-color: transparent;
    border: 1px solid var(--tai-accent);
    color: var(--tai-accent);
}

.tai-btn-outline:hover {
    background-color: var(--tai-accent);
    color: white;
}

.tai-banner-image {
    flex: 1;
    text-align: center;
}


.tai-about {
    padding: 100px 0;
}

.tai-about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tai-about-text {
    flex: 1;
}

.tai-section-title {
    font-family: 'Koulen', cursive;
    font-size: 36px;
    color: var(--tai-heading);
    margin-bottom: 20px;
}

.tai-section-title span {
    color: var(--tai-accent);
    text-transform: uppercase;
}

.tai-about-desc {
    margin-bottom: 30px;
}

.tai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tai-tag {
    background-color: var(--tai-blocks);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.tai-about-image {
    flex: 1;
    text-align: center;
    line-height: 0;
}

.tai-about-image img {
    max-width: 550px;
    width: 100%;
    border-radius: 15px;
}


.tai-stats {
    padding: 50px 0;
    background-color: var(--tai-bg-alt);
}

.tai-stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tai-stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.tai-stat-number {
    font-family: 'Koulen', cursive;
    font-size: 50px;
    line-height: 1;
    color: var(--tai-heading);
    margin-bottom: 5px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.tai-stat-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px var(--tai-accent);
    z-index: -1;
}

.tai-stat-desc {
    font-size: 16px;
}


.tai-features {
    padding: 100px 0;
    background: url('../images/shape.png') left center no-repeat;

}

.tai-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tai-feature-item {
    background-color: var(--tai-blocks);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.tai-feature-item:hover {
    transform: translateY(-5px);
}

.tai-feature-number {
    font-family: 'Koulen', cursive;
    font-size: 24px;
    color: var(--tai-accent);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tai-feature-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px var(--tai-accent);
    z-index: -1;
}

.tai-feature-title {
    font-family: 'Koulen', cursive;
    font-size: 20px;
    color: var(--tai-heading);
    margin-bottom: 15px;
}

.tai-feature-desc {
    margin-bottom: 20px;
}

.tai-feature-link {
    color: var(--tai-accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.tai-feature-link::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s;
}

.tai-feature-link:hover::after {
    transform: translateX(5px);
}


.tai-process {
    padding: 100px 0;
    background-color: var(--tai-bg-alt);
}

.tai-process-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tai-process-image {
    flex: 1;
    text-align: center;
    line-height: 0;
}

.tai-process-image img {
    max-width: 550px;
    width: 100%;
    border-radius: 15px;
}

.tai-process-steps {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tai-process-step {
    background-color: var(--tai-bg);
    padding: 25px;
    border-radius: 10px;
}

.tai-step-number {
    font-family: 'Koulen', cursive;
    font-size: 20px;
    color: var(--tai-accent);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.tai-step-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px var(--tai-accent);
    z-index: -1;
}

.tai-step-title {
    font-family: 'Koulen', cursive;
    font-size: 18px;
    color: var(--tai-heading);
    margin-bottom: 10px;
}


.tai-cta {
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
    border-radius: 25px;
    margin: 50px auto 0 auto;
    background-image: url('../images/why-choose-one-shape-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tai-cta-title {
    font-family: 'Koulen', cursive;
    font-size: 36px;
    color: var(--tai-heading);
    margin-bottom: 20px;
}

.tai-cta-desc {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}


.tai-faq {
    padding: 100px 0;
}



.tai-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.tai-faq-question {
    font-family: 'Koulen', cursive;
    font-size: 20px;
    color: var(--tai-heading);
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tai-faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--tai-accent);
}

.tai-faq-answer {
    padding-bottom: 20px;
    display: none;
}

.tai-faq-item.active .tai-faq-answer {
    display: block;
}

.tai-faq-item.active .tai-faq-question::after {
    content: "-";
}


.tai-footer {
    background-color: var(--tai-footer);
    color: white;
    padding: 70px 0 20px;
}

.tai-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tai-footer-about {
    flex: 2;
    min-width: 300px;
    margin-right: 50px;
    margin-bottom: 30px;
}

.tai-footer-logo {
    font-family: 'Koulen', cursive;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.tai-footer-logo img {
    margin-right: 6px;
}

.tai-footer-logo span {
    color: var(--tai-accent);
}

.tai-footer-desc {
    max-width: 400px;
    opacity: 0.8;
}

.tai-footer-menu {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.tai-footer-title {
    font-family: 'Koulen', cursive;
    font-size: 20px;
    margin-bottom: 20px;
}

.tai-footer-links {
    list-style: none;
}

.tai-footer-link {
    margin-bottom: 10px;
}

.tai-footer-link a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.tai-footer-link a:hover {
    opacity: 1;
}

.tai-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tai-footer-links-bottom {
    display: flex;
    list-style: none;
}

.tai-footer-links-bottom li {
    margin-left: 20px;
}

.tai-footer-links-bottom a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.tai-footer-links-bottom a:hover {
    opacity: 1;
}


.tai-cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    z-index: 1001;
    display: none;
}

.tai-cookie-title {
    font-family: 'Koulen', cursive;
    font-size: 20px;
    color: var(--tai-heading);
    margin-bottom: 10px;
}

.tai-cookie-desc {
    margin-bottom: 15px;
}

.tai-cookie-options {
    margin-bottom: 15px;
}

.tai-cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tai-cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}

.tai-cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.tai-cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.tai-cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.tai-cookie-slider {
    background-color: var(--tai-accent);
}

input:checked+.tai-cookie-slider:before {
    transform: translateX(26px);
}

.tai-cookie-btns {
    display: flex;
    gap: 10px;
}

.tai-cookie-btn {
    flex: 1;
    padding: 8px 15px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
}

.tai-cookie-accept {
    background-color: var(--tai-accent);
    color: white;
}

.tai-cookie-reject {
    background-color: transparent;
    border: 1px solid var(--tai-accent);
    color: var(--tai-accent);
}



.tai-about-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--tai-bg) 0%, var(--tai-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.tai-about-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 50, 248, 0.1) 0%, rgba(98, 50, 248, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.tai-about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.tai-about-text {
    flex: 1;
}

.tai-about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.tai-about-stat {
    text-align: center;
}

.tai-about-number {
    font-family: 'Koulen', cursive;
    font-size: 40px;
    color: var(--tai-accent);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.tai-about-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px var(--tai-accent);
    z-index: -1;
}

.tai-about-label {
    font-size: 14px;
    color: var(--tai-text);
}

.tai-about-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.tai-about-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background-color: var(--tai-accent);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

.tai-about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.tai-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tai-value-card {
    background-color: var(--tai-bg);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.tai-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--tai-accent), var(--tai-banner-span));
}

.tai-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tai-value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(98, 50, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tai-value-icon img {
    width: 35px;
    height: 35px;
}

.tai-value-title {
    font-family: 'Koulen', cursive;
    font-size: 22px;
    color: var(--tai-heading);
    margin-bottom: 15px;
}

.tai-value-desc {
    font-size: 16px;
}

@media (max-width: 992px) {
    .tai-about-content {
        flex-direction: column;
    }

    .tai-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tai-values {
        grid-template-columns: 1fr;
    }

    .tai-about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .tai-title {
        font-size: 36px;
    }
}

.tai-features-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--tai-bg) 0%, var(--tai-bg-alt) 100%);
    text-align: center;
}

.tai-features-hero .tai-title {
    max-width: 800px;
    margin: 0 auto 30px;
}

.tai-features-hero p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.tai-feature-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.tai-category-btn {
    background-color: var(--tai-blocks);
    color: var(--tai-text);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.tai-category-btn.active,
.tai-category-btn:hover {
    background-color: var(--tai-accent);
    color: white;
}

.tai-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tai-feature-card {
    background-color: var(--tai-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.tai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tai-feature-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    background: linear-gradient(135deg, var(--tai-accent), #8a6aff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tai-feature-icon::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--tai-accent), #8a6aff);
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
}

.tai-feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.tai-feature-content {
    padding: 0 30px 30px;
    text-align: center;
}

.tai-feature-title {
    font-family: 'Koulen', cursive;
    font-size: 22px;
    color: var(--tai-heading);
    margin-bottom: 15px;
}

.tai-feature-desc {
    margin-bottom: 20px;
}

.tai-feature-link {
    color: var(--tai-accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.tai-feature-link::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s;
}

.tai-feature-link:hover::after {
    transform: translateX(5px);
}

.tai-feature-highlight {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.tai-feature-highlight:nth-child(even) {
    flex-direction: row-reverse;
}

.tai-feature-highlight-content {
    flex: 1;
}

.tai-feature-highlight-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.tai-feature-highlight-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background-color: var(--tai-accent);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

.tai-feature-highlight-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.tai-feature-list {
    list-style: none;
    margin-top: 30px;
}

.tai-feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.tai-feature-list li::before {
    content: "✓";
    color: var(--tai-accent);
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .tai-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tai-feature-highlight {
        flex-direction: column;
        gap: 40px;
    }

    .tai-feature-highlight:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .tai-feature-grid {
        grid-template-columns: 1fr;
    }

    .tai-title {
        font-size: 36px;
    }
}


.tai-contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--tai-bg) 0%, var(--tai-bg-alt) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tai-contact-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 50, 248, 0.1) 0%, rgba(98, 50, 248, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.tai-contact-hero .tai-title {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.tai-contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.tai-contact-content {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.tai-contact-info {
    flex: 1;
}

.tai-contact-form-container {
    flex: 1;
}

.tai-contact-card {
    background-color: var(--tai-blocks);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}



.tai-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tai-contact-card:last-child {
    margin-bottom: 0;
}

.tai-contact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--tai-accent), #8a6aff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tai-contact-icon::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--tai-accent), #8a6aff);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.tai-contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.tai-contact-title {
    font-family: 'Koulen', cursive;
    font-size: 22px;
    color: var(--tai-heading);
    margin-bottom: 10px;
}

.tai-contact-detail {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.tai-contact-label {
    font-size: 14px;
    color: var(--tai-text);
    opacity: 0.7;
}

.tai-form-group {
    margin-bottom: 25px;
}

.tai-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--tai-heading);
}

.tai-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    background-color: white;
}

.tai-form-input:focus {
    outline: none;
    border-color: var(--tai-accent);
    box-shadow: 0 0 0 3px rgba(98, 50, 248, 0.1);
}

.tai-form-textarea {
    resize: vertical;
    min-height: 120px;
}

#tai-thank-you {
    display: none;
    text-align: center;
    padding: 30px 0;
}

#tai-thank-you div:first-child {
    width: 80px;
    height: 80px;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

#tai-thank-you span {
    color: #4CAF50;
    font-size: 36px;
}

#tai-thank-you h3 {
    font-family: 'Koulen', cursive;
    color: var(--tai-heading);
    margin-bottom: 15px;
    font-size: 24px;
}

@media (max-width: 768px) {
    .tai-contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .tai-contact-card {
        padding: 30px 25px;
    }
    
    .tai-contact-hero {
        padding: 120px 0 60px;
    }
    
    .tai-contact-hero .tai-title {
        font-size: 36px;
    }
}




.tai-content-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tai-content-intro {
    font-size: 18px;
    color: var(--tai-text);
    opacity: 0.8;
}

.tai-content-body {
    max-width: 900px;
    margin: 0 auto;
}

.tai-content-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
}

.tai-content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tai-content-title {
    font-family: 'Koulen', cursive;
    font-size: 28px;
    color: var(--tai-heading);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.tai-content-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--tai-accent);
    border-radius: 50%;
}

.tai-content-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.tai-content-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.tai-content-list li::before {
    content: "•";
    color: var(--tai-accent);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.tai-contact-mini {
    background: var(--tai-blocks);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.tai-contact-mini p {
    margin-bottom: 10px;
}

.tai-contact-mini p:last-child {
    margin-bottom: 0;
}

.tai-cookie-type {
    background: var(--tai-blocks);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--tai-accent);
}

.pd100{
    padding: 150px 0 80px 0;
}

.pd100 .tai-subtitle{
    justify-content: center;
}

.tai-cookie-type:last-child {
    margin-bottom: 0;
}

.tai-cookie-title {
    font-family: 'Koulen', cursive;
    font-size: 20px;
    color: var(--tai-heading);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .tai-content-title {
        font-size: 24px;
    }
    
    .tai-content-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .tai-contact-mini,
    .tai-cookie-type {
        padding: 20px;
    }
}





































@media (max-width: 992px) {

    .tai-banner-content,
    .tai-about-content,
    .tai-process-content {
        flex-direction: column;
    }

    .tai-banner-text,
    .tai-about-text,
    .tai-process-steps {
        margin-bottom: 50px;
    }

    .tai-features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tai-footer-about {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .tai-nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--tai-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .tai-nav-menu.active {
        display: flex;
    }

    .tai-nav-item {
        margin: 10px 0;
    }

    .tai-menu-toggle {
        display: block;
    }

    .tai-features-container {
        grid-template-columns: 1fr;
    }

    .tai-process-steps {
        grid-template-columns: 1fr;
    }

    .tai-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .tai-footer-links-bottom {
        margin-top: 15px;
    }

    .tai-footer-links-bottom li {
        margin: 0 10px;
    }

    .tai-cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .tai-title {
        font-size: 36px;
    }

    .tai-section-title {
        font-size: 28px;
    }

    .tai-banner-btns {
        text-align: center;
        flex-direction: column;
    }

    .tai-stats-container {
        flex-direction: column;
        align-items: center;
    }

    .tai-stat-item {
        min-width: auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .tai-banner {
        padding: 150px 0 70px 0;
    }

    .tai-about-content {
        gap: 25px;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tai-animate {
    animation: fadeInUp 0.8s ease-out;
}

@media(max-width: 560px) {
    .tai-footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
    .tai-title.cust{
        font-size: 38px;
    }
}