/* Base Styles */
:root {
    --brand-blue: #0052CC;
    --brand-blue-dark: #003E99;
    --brand-green: #36B37E;
    --text-primary: #172B4D;
    --text-secondary: #6B778C;
    --bg-light: #FFFFFF;
    --bg-secondary: #F4F5F7;
    --border-color: #DFE1E6;
    --font-global: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-global);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html {
    scroll-padding-top: 80px; /* Offset for sticky header */
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003e99;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-global);
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--brand-blue-dark);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.2);
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.content-wrapper {
    max-width: 650px;
    width: 100%;
}

/* Thank You Container */
.thank-you-container {
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-top: 5px solid var(--brand-blue);
    animation: fade-in 0.7s ease-out;
    text-align: center;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon */
.thank-you-icon {
    font-size: 4rem;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
    animation: pop-in 0.5s 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    transform: scale(0);
}

@keyframes pop-in {
    to {
        transform: scale(1);
    }
}

/* Typography */
.thank-you-container h1 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.thank-you-container p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Trust Block */
.trust-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}
.trust-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.trust-awards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.trust-award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f9fafb;
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}
.trust-award-item img {
    height: 30px;
}
.trust-award-item p {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.trust-logos img {
    height: 35px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.8;
}
