/* TrustWheel UK - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

.tw-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Disclosure Bar */
.tw-disclosure-bar {
    background-color: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.tw-disclosure-text {
    font-size: 12px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Header & Nav */
.tw-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.tw-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.tw-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.tw-logo-img {
    height: 40px;
    margin-right: 10px;
}

.tw-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #005EB8;
}

.tw-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tw-nav-item {
    margin-left: 30px;
}

.tw-nav-link {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.tw-nav-link:hover {
    color: #005EB8;
}

/* Hero Section */
.tw-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #005EB8 0%, #003366 100%);
    color: #ffffff;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.tw-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tw-hero-text-box {
    flex: 1;
}

.tw-hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tw-hero-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.tw-hero-subheading {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
}

.tw-hero-cta-group {
    display: flex;
    gap: 20px;
}

.tw-hero-image-box {
    flex: 1;
    text-align: right;
}

.tw-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Buttons */
.tw-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
}

.tw-btn-primary {
    background-color: #FFD200;
    color: #1A1A1A;
}

.tw-btn-primary:hover {
    background-color: #ffdc33;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 210, 0, 0.3);
}

.tw-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.tw-btn-secondary:hover {
    background-color: #ffffff;
    color: #005EB8;
}

/* Features Section */
.tw-section {
    padding: 80px 0;
}

.tw-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.tw-heading-large {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tw-text-muted {
    color: #666666;
    font-size: 18px;
}

.tw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tw-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.tw-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #005EB8;
}

.tw-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 94, 184, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #005EB8;
    font-size: 24px;
}

.tw-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tw-card-text {
    color: #666666;
    font-size: 16px;
}

/* Content Page Styles */
.tw-content-wrapper {
    max-width: 800px;
    margin: 60px auto;
}

.tw-article {
    background-color: #ffffff;
}

.tw-article-header {
    margin-bottom: 40px;
}

.tw-article-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tw-article-meta {
    color: #999999;
    font-size: 14px;
    display: flex;
    gap: 20px;
}

.tw-article-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.tw-article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.tw-article-paragraph {
    margin-bottom: 25px;
}

.tw-article-subheading {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.tw-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.tw-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eeeeee;
}

.tw-th {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #eeeeee;
}

.tw-td {
    padding: 15px;
    border-bottom: 1px solid #eeeeee;
}

/* Trust Signals */
.tw-trust-signals {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    opacity: 0.8;
}

.tw-trust-img {
    height: 30px;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.tw-trust-img:hover {
    filter: grayscale(0);
}

/* Footer */
.tw-footer {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 80px 0 40px;
}

.tw-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.tw-footer-brand {
    max-width: 300px;
}

.tw-footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.tw-footer-text {
    color: #999999;
    font-size: 14px;
    margin-bottom: 20px;
}

.tw-footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.tw-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tw-footer-item {
    margin-bottom: 12px;
}

.tw-footer-link {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.tw-footer-link:hover {
    color: #ffffff;
}

.tw-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tw-copyright {
    font-size: 13px;
    color: #666666;
}

/* Process Steps */
.tw-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tw-step {
    text-align: center;
    position: relative;
}

.tw-step-number {
    width: 50px;
    height: 50px;
    background-color: #005EB8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* FAQ Section */
.tw-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.tw-faq-item {
    margin-bottom: 20px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
}

.tw-faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tw-faq-answer {
    padding: 20px;
    background-color: #ffffff;
    display: none;
    border-top: 1px solid #eeeeee;
}

.tw-faq-item.active .tw-faq-answer {
    display: block;
}

.tw-faq-item.active .tw-faq-question {
    background-color: #ffffff;
    color: #005EB8;
}

/* Testimonials */
.tw-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tw-testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    font-style: italic;
    position: relative;
}

.tw-testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-style: normal;
}

.tw-author-info {
    font-size: 14px;
}

.tw-author-name {
    font-weight: 700;
    color: #1A1A1A;
}

/* Comparison Highlight */
.tw-comparison-highlight {
    background-color: #005EB8;
    color: #ffffff;
    padding: 60px 0;
    border-radius: 30px;
    margin: 40px 0;
}

/* Hamburger Menu */
.tw-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.tw-hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #1A1A1A;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .tw-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .tw-hero-image-box {
        text-align: center;
    }
    .tw-hero-cta-group {
        justify-content: center;
    }
    .tw-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tw-hamburger {
        display: flex;
    }

    .tw-nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #ffffff;
        padding: 100px 40px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1050;
    }

    .tw-nav-list.active {
        right: 0;
    }

    .tw-nav-item {
        margin: 20px 0;
    }

    .tw-nav-link {
        font-size: 20px;
    }

    /* Hamburger Animation */
    .tw-hamburger.active .tw-hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .tw-hamburger.active .tw-hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .tw-hamburger.active .tw-hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .tw-hero-heading {
        font-size: 36px;
    }
    .tw-footer-grid {
        grid-template-columns: 1fr;
    }
    .tw-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
