@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --green-primary: #148465;
    --green-dark: #145c51;
    --gray-light: #f8f9fa;
    --bg-primary: #fff;
    --bg-secondary: #f0f4f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #cdcdcd;
}

table {
    width: 100%;
}

/* Sidebar */

.sidebar {
    width: 250px;
    min-height: 100vh;
    background: var(--green-primary);
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.sidebar .logo-image {
    max-width: 170px;
    height: auto;
}


.sidebar .nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar .nav-links a:hover {
    color: #fff;
}

.sidebar .nav-links .nav-divider {
    color: #fff;
    margin: 0 10px;
    font-weight: 300;
}

/* Main Content */

section {
    min-height: 100vh;
    padding: 50px 40px;
    display: flex;
    align-items: center;
}

.main-wrapper {
    margin-left: 250px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

.content-area {
    flex: 1;
    /*padding: 40px 0 0;*/
}

.infoTxt-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.errorTxt-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

/* Buttons & Forms */

.btn-primary {
    background: var(--green-primary) !important;
    border: none !important;
}

.btn-primary:hover {
    background: var(--green-dark) !important;
}

.btn-outline-primary {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.btn-outline-primary:hover {
    background: var(--green-primary);
    color: #fff;
}

.btn-success-custom {
    background: #10b981;
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.btn-success-custom:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16,185,129,0.3);
}

.form-check-input:checked {
    background-color: var(--green-primary);
    border-color: var(--green-primary);
}

.link-primary {
    color: var(--green-primary) !important;
    text-decoration: none;
}

.btn-danger {
    background: #ef4444;
    border: none;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Hero */

.hero-section {
    background: var(--bg-primary);
    text-align: center;
}

.hero-section h1 {
    font-size: 36pt;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 3rem;
}

.business-cards-preview {
    position: relative;
    height: 400px;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image {
    position: absolute;
    width: 650px;
    height: 400px;
    transition: transform 0.5s ease;
}

.card-image:hover {
    transform: translateY(-20px) scale(1.05) rotate(0deg) !important;
    z-index: 10 !important;
}

.hero-tagline {
    font-size: 19pt;
    color: #333;
    margin: 20px 0 30px;
    font-weight: 300;
}

.btn-cta {
    padding: 22px 60px;
    background: var(--green-primary);
    color: #fff;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(26,123,109,0.3);
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    color: #fff;
}

/* Features */

.features-section {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 36pt;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 14pt;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
}

.feature-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s;
    display: grid;
    align-content: space-between;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gray-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.feature-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.feature-card p {
    color: #666;
    font-size: 12pt;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Connections */

.connections-section {
    background: var(--bg-primary);
}

.connection-item {
    background: var(--gray-light);
    padding: 50px 30px;
    /*border-radius: 20px;*/
    text-align: center;
    cursor: pointer;
    height: 100%;
    transition: all 0.3s;
}

.connection-item:hover {
    background: var(--green-primary);
    transform: scale(1.05);
}

.connection-item:hover .connection-icon, .connection-item:hover .connection-name {
    color: #fff;
}

.connection-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    transition: all 0.3s;
}

.connection-icon img {
    padding: 1rem;
}

.connection-name {
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

/* Pricing */

.pricing-section {
    background: var(--bg-secondary);
}

.pricing-section .section-title {
    margin-bottom: 3rem;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 10px solid transparent;
    height: 100%;
    transition: all 0.4s;
    display: grid;
}

.pricing-section p {
    margin-top: 3rem;
}

.pricing-card.featured {
    border-color: #96c4b8;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(26,123,109,0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-name {
    font-size: 11pt;
    font-weight: 700;
    margin-bottom: 30px;
}

.plan-price {
    font-size: 33pt;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
}

.plan-price span {
    font-size: 16pt;
    font-weight: 400;
    color: #666;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    font-size: 11pt;
    color: #666;
    font-weight: 300;
}

.pricing-card.featured p {
    margin-top: 1.5rem;
    font-size: 11pt;
    margin-bottom: 0;
}

.plan-button {
    width: 100%;
    padding: 18px;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 12pt;
    font-weight: 600;
    transition: all 0.3s;
}

.plan-button:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

.plan-button.primary {
    background: var(--green-primary);
    color: #fff;
    border-color: var(--green-primary);
}

.plan-button.primary:hover {
    background: var(--green-dark);
    color: #fff;
}

/*Content Pages*/

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
}

.page-header .last-updated {
    font-size: 16px;
    color: #718096;
}

.content-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--green-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-body ul, .content-body ol {
    margin-left: 25px;
    margin-bottom: 25px;
}

.content-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.highlight-box {
    background: #e8f4f2;
    border-left: 4px solid var(--green-primary);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin: 0;
    color: #2d3748;
}

/* About */

.about-section {
    background: var(--bg-primary);
}

.about-section h2 {
    font-size: 36pt;
    font-weight: 800;
    margin-bottom: 30px;
}

.about-section h3 {
    font-size: 16pt;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 12pt;
    color: #666;
    margin-bottom: 25px;
    font-weight: 300;
}

.contact-info {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 24px;
    height: 100%;
}

.contact-info h3 {
    font-size: 16pt;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 12pt;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    margin: 15px 0;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: #1a1a1a;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item .contact-icon {
    width: 35px;
    height: 35px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12pt;
    flex-shrink: 0;
}

.contact-item div {
    font-size: 11pt;
}

.group-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.group-logo-item {
    background: #f0f0f0;
    padding: 20px 15px;
    /*border-radius: 8px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 80px;
    transition: all 0.3s ease;
}

.group-logo-item:hover {
    background: #e5e5e5;
    transform: translateY(-3px);
}

.group-logo-img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
}

/*Complete Registration*/

.registration-container {
    max-width: 600px;
    margin: 0 auto;
}

.registration-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-check-input:checked {
    background-color: var(--green-primary);
    border-color: var(--green-primary);
}

.verification-success {
    color: #10b981;
    font-weight: 600;
    display: none;
    margin-top: 10px;
}

.pricing-option {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
}

.pricing-option.selected {
    border-color: var(--green-primary);
    background: rgba(26,123,109,0.05);
}

.validation-container {
    width: 100%;
    max-width: 640px;
}

.validation-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.validation-card.form-control:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(26,123,109,0.1);
}

.validation-card.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.otp-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
}

.otp-code {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 8px;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
}

.verification-status {
    color: #10b981;
    font-weight: 600;
    display: none;
    margin-top: 10px;
}

.verification-status i {
    margin-right: 5px;
}

#otpSection {
    display: none;
}

/*Sign In*/

.signin-container {
    max-width: 500px;
    width: 100%;
}

.signin-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-check-input:checked {
    background-color: var(--green-primary);
    border-color: var(--green-primary);
}

.link-primary {
    color: var(--green-primary);
    text-decoration: none;
}

.link-primary:hover {
    color: var(--green-dark);
}

.error-msg {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/*Create Password*/

.password-container {
    max-width: 500px;
    width: 100%;
}

.password-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.password-requirements li.valid {
    color: #10b981;
}

.password-requirements li.invalid {
    color: #ef4444;
}

/*Forgot Password*/

.forgot-password-container {
    max-width: 500px;
    width: 100%;
}

.forgot-password-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.verification-success {
    color: #10b981;
    font-weight: 600;
    display: none;
    margin-top: 10px;
}

.back-link {
    color: var(--green-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.back-link:hover {
    color: var(--green-dark);
}

/* Footer */

footer {
    background: var(--bg-primary);
    padding: 40px 10px;
    color: #666;
    position: relative;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--green-primary);
}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--green-primary);
}

.footer-divider {
    color: #999;
    margin: 0 5px;
}

/*Error Pages*/

.error-container { 
    text-align: center; 
    max-width: 600px; 
    background: #fff; 
    border-radius: 24px; 
    padding: 40px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.1); 
}

.error-code {
    font-size: 72px;
    font-weight: 800;
    color: var(--green-primary);
}

.error-container .btn-primary {
    padding: 14px 40px;
}

.error-container .btn-outline-primary {
    padding: 14px 40px;
}

.error-icon {
    font-size: 100px;
    color: #f59e0b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.error-title {
    font-weight: 800;
    margin-bottom: 20px;
}

.error-message {
    font-size: 12pt;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: left;
}

.error-details h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--green-primary);
}

.error-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-details li {
    padding: 8px 0 0 0;
    color: #666;
}

.error-details li i {
    color: var(--green-primary);
    margin-right: 10px;
}

.contact-support {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.contact-support p {
    color: #666;
    margin-bottom: 15px;
}

.support-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--green-primary);
    font-weight: 600;
    transition: all 0.3s;
}

.support-info:hover {
    background: var(--green-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Payment Page */

.status-container {
    max-width: 600px;
    width: 100%;
}

.status-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.status-icon-success {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    color: #fff;
    font-size: 30px;
}

.status-icon-failure {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: shakeIn 0.5s ease-out;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
    color: #fff;
    font-size: 30px;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shakeIn {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    75% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.status-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
}

.status-title.success {
    color: #059669;
}

.status-title.failure {
    color: #dc2626;
}

.status-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.plan-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.plan-badge.premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.plan-badge.corporate {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
}

.info-box {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.info-box.failure {
    background: #fef2f2;
    border-color: #fecaca;
}

.info-box-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    color: #065f46;
    margin-bottom: 12px;
}

.info-box.failure .info-box-title {
    color: #991b1b;
}

.info-box-title i {
    font-size: 24px;
}

.info-box-content {
    color: #166534;
    font-size: 15px;
    line-height: 1.7;
}

.info-box.failure .info-box-content {
    color: #7f1d1d;
}

.email-highlight {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--green-primary);
    display: inline-block;
    margin-bottom: 1rem;
}

.info-box.failure .email-highlight {
    color: #dc2626;
}

.features-list {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #2d3748;
    font-size: 15px;
}

.feature-item i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-primary-custom {
    flex: 1;
    background: var(--green-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 123, 109, 0.3);
}

.btn-secondary-custom {
    flex: 1;
    background: #fff;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary-custom:hover {
    background: var(--green-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 123, 109, 0.3);
}

.btn-retry {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.btn-retry:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
}

.support-text {
    color: #718096;
    font-size: 14px;
    margin-top: 25px;
}

.support-text a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
}

.support-text a:hover {
    text-decoration: underline;
}

/* Mobile */

@media (max-width: 475px) {
    table td, table th {
        font-size: 6pt;
    }
}

@media (max-width: 575px) {
    .btn-primary {
        width: 100%;
        margin-bottom: 30px;
    }

    .btn-outline-primary {
        width: 100%;
    }

    .contact-item div {
        font-size: 10pt;
    }

    .group-logo-item {
        min-width: calc(30% - 15px);
    }

    .group-logo-img {
        max-width: 90px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .group-logo-item {
        min-width: calc(32% - 15px);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        padding: 20px;
    }

    .sidebar .logo-image {
        max-width: 90px;
    }

    .sidebar .logo-subtitle {
        font-size: 12pt;
    }

    .main-wrapper {
        margin-left: 0;
        padding-top: 90px;
    }

    section {
        padding: 30px 10px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 27pt;
        margin-bottom: 2.5rem;
    }

    .hero-tagline {
        font-size: 15pt;
        margin: 0 0 15px;
    }

    .btn-cta {
        font-size: 12pt;
        padding: 18px 0;
        width: 100%;
    }

    .business-cards-preview {
        height: 210px;
        margin: 10px 0;
    }

    .card-image:hover {
        transform: none !important;
    }

    .card-image {
        width: 100%;
        height: 100%;
    }

    .section-title {
        font-size: 27pt;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 12pt;
        margin-bottom: 30px;
    }

    .connection-item {
        /*width: 125px;
        height: 125px;*/
        padding: 25px;
    }

    .connection-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .connection-name {
        font-size: 15px;
    }

    .connection-icon img {
        padding: 0.5rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .pricing-section .section-title {
        margin-bottom: 1rem;
    }

    .pricing-section p {
        margin-top: 1rem;
    }

    .plan-price {
        margin: 1rem 0 2.5rem;
    }

    .plan-features {
        margin: 1rem 0 2.5rem;
    }

    .error-container {
        padding: 40px 30px;
    }

    .signin-container {
        padding: 0 0.75rem;
    }

    .signin-card {
        padding: 30px;
    }

    .content-container {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .validation-card {
        padding: 30px 24px;
    }

    footer {
        padding: 25px 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-order-1 {
        order: 1;
    }

    .footer-order-2 {
        order: 2;
    }

    .footer-order-3 {
        order: 3;
    }

    footer::before {
        left: 20px;
        right: 20px;
    }

    .status-card {
        padding: 30px 20px;
    }

    .status-icon-success, .status-icon-failure {
        width: 100px;
        height: 100px;
    }
    
    .status-icon-success i, .status-icon-failure i {
        font-size: 50px;
    }
    
    .status-title {
        font-size: 24px;
    }

    .action-buttons {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section h1 {
        margin-bottom: 1rem;
    }

    .business-cards-preview {
        height: 290px;
        margin: 0 0 3rem;
    }

    .card-image {
        width: 500px;
        height: 240px;
    }

    .btn-cta {
        padding: 22px;
    }

    .connection-item {
        padding: 20px;
    }

    .connection-name {
        font-size: 15px;
    }

    .group-logo-item {
        min-width: calc(32% - 15px);
    }
}

@media (max-width: 991px) {
    .group-logos {
        justify-content: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar {
        width: 210px;
    }

    .main-wrapper {
        margin-left: 210px;
    }

    section {
        padding: 50px 10px;
    }
}