@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #21201C;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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


/* Banner Alert - Conversion.ai style */
.site-banner {
    background: linear-gradient(135deg, #24A871 0%, #22956A 100%);
    color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    border-radius: 12px;
    margin: 0 24px 3rem 24px;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.banner-icon {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content Styling */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 24px 6rem;
}

main h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

main h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

main p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Service Comparison Table - Dark theme */
.service-comparison {
    margin: 3rem 0;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.service-table thead {
    background: linear-gradient(135deg, #24A871 0%, #22956A 100%);
}

.service-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.service-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.3s ease;
}

.service-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.service-table tbody tr:last-child {
    border-bottom: none;
}

.service-table td {
    padding: 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-table td:first-child {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

/* Lists - Conversion.ai style */
main ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

main ul li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

main ul li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #24A871;
    transform: translateY(-1px);
}

main ul li:before {
    content: "→";
    position: absolute;
    left: 1.25rem;
    color: #24A871;
    font-weight: 600;
    top: 1rem;
}

main ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-left: 1.5rem;
    display: block;
}

main ul li a:hover {
    color: #24A871;
}

/* Buttons - Conversion.ai style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #24A871 0%, #22956A 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(36, 168, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 168, 113, 0.4);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 3rem 20px 4rem;
    }
    
    main h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    main h2 {
        font-size: 1.75rem;
        margin-top: 3rem;
    }
    
    main p {
        font-size: 1rem;
    }
    
    .service-table {
        font-size: 0.9rem;
    }
    
    .service-table th,
    .service-table td {
        padding: 1rem;
    }
    
    
    .container {
        padding: 0 20px;
    }
    
    .banner-content {
        padding: 0 20px;
    }
}

/* Font Awesome Icon Styling */
.banner-icon {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-table td i {
    margin-right: 0.75rem;
    color: #24A871;
    width: 16px;
    text-align: center;
}

.service-table td:last-child i {
    color: rgba(255, 255, 255, 0.6);
}

main ul li a i {
    margin-right: 0.75rem;
    color: #24A871;
    width: 18px;
    text-align: center;
}

/* Scrollbar styling for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}