:root {
    --primary-color: #4361ee;
    --primary-dark: #3046c5;
    --primary-light: #6b83ff;
    --secondary-color: #ef476f;
    --dark-color: #2b3a67;
    --light-color: #f8f9fa;
    --success-color: #2ecc71;
    --grey-color: #758396;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient-primary: linear-gradient(135deg, #4361ee, #3a0ca3);
    --gradient-secondary: linear-gradient(135deg, #ef476f, #f4a261);
    --gradient-cool: linear-gradient(135deg, #4cc9f0, #4361ee);
    --gradient-warm: linear-gradient(135deg, #f72585, #ef476f);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Header and Navigation Styles */
header {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
}

.logo svg {
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

nav a i {
    font-size: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 5px;
    text-transform: uppercase;
}

/* Hero Section with Gradient Background */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    color: white;
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"%3E%3Cpath fill="rgba(255, 255, 255, 0.05)" d="M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"%3E%3C/path%3E%3C/svg%3E');
    background-position: center right -100px;
    opacity: 0.1;
    background-size: 600px;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.btn-primary:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Detector Page Hero Styles */
.detector-hero {
    background: linear-gradient(135deg, var(--dark-color), #1a2a47);
}

.detector-hero::before {
    background-position: center left -100px;
    background-size: 500px;
}

.detector-hero h1 {
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Converter Section */
.converter-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.converter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.05) 0%, rgba(74, 111, 165, 0) 100%);
    z-index: 0;
}

.converter-section::after {
    content: '';
    position: absolute;
    right: -150px;
    top: 50%;
    width: 400px;
    height: 400px;
    background-color: rgba(67, 97, 238, 0.03);
    border-radius: 50%;
    z-index: 0;
    transform: translateY(-50%);
}

.converter-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.converter-section > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #5a6a7e;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.converter-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.input-container, .output-container {
    width: 100%;
    position: relative;
}

.input-container h3, .output-container h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.input-container h3:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 24px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    margin-right: 12px;
    border-radius: 3px;
}

.output-container h3:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 24px;
    background: linear-gradient(to bottom, var(--success-color), #219653);
    margin-right: 12px;
    border-radius: 3px;
}

textarea {
    width: 100%;
    height: 250px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    resize: none;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.input-container textarea {
    background-color: #fafafa;
}

.output-container textarea {
    background-color: #f8fcf8;
    border-color: #e6f5e6;
}

.word-count {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #eaeef3;
}

.option {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    position: relative;
}

.option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.option label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

.option label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ced4da;
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.2s ease;
    background-color: white;
}

.option input[type="checkbox"]:checked + label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.option input[type="checkbox"]:checked + label::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 1px;
    font-size: 0.7rem;
    color: white;
}

.tooltip {
    position: relative;
    display: inline-flex;
    margin-left: 8px;
    color: #adb5bd;
}

.tooltip i {
    font-size: 0.9rem;
    cursor: help;
}

.tooltip-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    width: 200px;
    text-align: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tooltip-text::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}

.tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.converter-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.action-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.convert-btn {
    background: var(--gradient-primary);
    color: white;
}

.convert-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(67, 97, 238, 0.3);
}

.copy-btn {
    background-color: white;
    color: var(--dark-color);
    border: 1px solid #e9ecef;
}

.copy-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
}

.highlight {
    animation: highlight-animation 0.3s ease-in-out;
}

@keyframes highlight-animation {
    0% { background-color: rgba(67, 97, 238, 0.1); }
    100% { background-color: transparent; }
}

/* Features Section */
.features-section {
    padding: 80px 7%;
    background-color: var(--light-color);
    text-align: center;
}

.features-section h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

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

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.feature-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-dark);
}

.feature-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.04) 0%, rgba(74, 111, 165, 0) 100%);
    z-index: 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    background-color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    margin: 0;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    height: auto;
    overflow: hidden;
    text-align: left;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 1.5rem;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    margin-top: 0;
    line-height: 1.6;
    color: #5a6a7e;
    font-size: 1rem;
}

/* FAQ Link Styles */
.text-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
    padding-bottom: 1px;
}

.text-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer ul li {
    margin-bottom: 0.7rem;
    position: relative;
    color: #5a6a7e;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-answer ul li::before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 7% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-new-link {
    position: relative;
}

.footer-new-link::after {
    content: 'New';
    position: absolute;
    top: -8px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}

.footer-cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.footer-cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .converter-container {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .logo h1 {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .options {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Page Header for About, Contact, Privacy Pages */
.page-header {
    background: linear-gradient(135deg, #e0f7fa, #f5f7fa);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* Container for Content Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Page Styles */
.about-content {
    padding: 40px 0;
}

.about-section {
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out;
}

.about-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: #f8f9fb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.cta-section {
    background: linear-gradient(135deg, rgba(74, 107, 255, 0.1) 0%, rgba(119, 231, 247, 0.1) 100%);
    padding: 60px 0;
    text-align: center;
    margin: 40px 0;
    border-radius: 10px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #555;
}

/* Privacy Policy Page */
.privacy-content {
    padding: 40px 0;
}

.privacy-section {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

.privacy-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.privacy-section h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 20px 0 10px;
}

.privacy-section p, 
.privacy-section ul,
.privacy-section ol {
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-section ul li,
.privacy-section ol li {
    margin-bottom: 10px;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-method {
    background: #f8f9fb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-social {
    margin-top: 15px;
}

.contact-social a {
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: grid;
    grid-gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
    outline: none;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.submit-button {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 111, 165, 0.4);
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-faq {
    margin-top: 60px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .about-section h3,
    .privacy-section h3,
    .contact-form-container h3 {
        font-size: 1.6rem;
    }
}

/* Add styles for the results visualization in the converter */
.results-visualization {
    margin-top: 3rem;
    background-color: #f7f9fc;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.results-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.results-visualization h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
}

.results-visualization p {
    text-align: center;
    margin-bottom: 2rem;
    color: #5d6778;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.detection-meters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detection-meter {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.detection-meter:hover {
    transform: translateY(-5px);
}

.detection-meter h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.meter-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meter {
    height: 30px;
    background-color: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.meter-gauge {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: width 1.5s ease-in-out;
    background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: meter-progress 1s linear infinite;
}

@keyframes meter-progress {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

.meter.original .meter-gauge {
    background-color: #e74c3c;
}

.meter.converted .meter-gauge {
    background-color: #27ae60;
}

.meter-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
}

.improvement-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    text-align: center;
}

.key-features {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.key-features h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.2rem;
    text-align: center;
}

.key-features ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.5rem;
}

.key-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    border-bottom: none;
    transition: transform 0.2s ease;
}

.key-features li:hover {
    transform: translateX(5px);
}

.key-features li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Make the results section responsive */
@media (max-width: 768px) {
    .detection-meters {
        flex-direction: column;
    }
    
    .improvement-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .key-features ul {
        grid-template-columns: 1fr;
    }
}

/* Detection Section */
.detection-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #f8f9fa 25%, #f0f2f5 25%, #f0f2f5 50%, #f8f9fa 50%, #f8f9fa 75%, #f0f2f5 75%, #f0f2f5 100%);
    background-size: 20px 20px;
}

.detection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.05) 0%, rgba(74, 111, 165, 0) 100%);
    z-index: 0;
}

.detection-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.detection-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.detection-container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #5a6a7e;
    line-height: 1.6;
}

.results-visualization {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.visualization-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f2f5;
}

.viz-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(74, 111, 165, 0.3);
}

.viz-icon i {
    color: white;
    font-size: 1.5rem;
}

.visualization-header h3 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--dark-color);
    font-weight: 600;
}

.meter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.meter {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}

.meter:hover {
    transform: translateY(-5px);
}

.meter-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.meter-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.meter-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.meter.original .meter-value {
    color: #e74c3c;
}

.meter.converted .meter-value {
    color: #27ae60;
}

.meter-bar {
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
}

.meter-gauge {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    background-size: 20px 20px;
    animation: meter-progress 1s linear infinite;
}

.meter.original .meter-gauge {
    background-color: #e74c3c;
    background-image: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.15) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.15) 75%, 
        transparent 75%, 
        transparent);
}

.meter.converted .meter-gauge {
    background-color: #27ae60;
    background-image: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.15) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.15) 75%, 
        transparent 75%, 
        transparent);
}

.meter-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    text-align: right;
}

.meter-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.improvement-stats {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #5a6a7e;
    font-weight: 500;
}

.techniques-chart {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.techniques-chart h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.technique-bar {
    height: 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: width 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.technique-name {
    color: white;
    font-weight: 500;
    z-index: 1;
}

.technique-value {
    color: white;
    font-weight: 700;
    z-index: 1;
}

@media (max-width: 992px) {
    .meter-container {
        flex-direction: column;
    }
    
    .meter-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .improvement-stats {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .detection-container h2 {
        font-size: 2rem;
    }
    
    .results-visualization {
        padding: 1.5rem;
    }
    
    .visualization-header {
        flex-direction: column;
        text-align: center;
    }
    
    .viz-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-cool), var(--gradient-warm));
    padding: 4rem 2rem;
}

.cta-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-box.new-feature {
    border: none;
    position: relative;
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-direction: column;
}

.cta-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.cta-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.5;
}

.cta-features {
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1rem;
}

.feature {
    margin-bottom: 0.75rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.feature i {
    color: var(--primary-color);
    margin-right: 0.7rem;
    font-size: 0.8rem;
}

.badge.new {
    background-color: #ff5757;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* AI Detector Page Styles */
.detector-hero {
    background: linear-gradient(135deg, #2c3e50, var(--primary-color));
    min-height: 300px;
}

.detector-tool-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.detector-tool-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.detector-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.input-container {
    margin-bottom: 2rem;
}

.text-input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.text-input-header label {
    font-weight: 600;
    color: #333;
}

.character-count {
    color: #666;
    font-size: 0.9rem;
}

#detector-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 200px;
    transition: border-color 0.3s;
}

#detector-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
}

.text-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.text-actions button {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detector-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.detector-actions button {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.action-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Results Container */
.results-container {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    margin-top: 3rem;
    border-top: 4px solid var(--primary-color);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.results-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #333;
}

.result-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.score-gauge {
    width: 150px;
    height: 80px;
    background: #ddd;
    border-radius: 150px 150px 0 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.gauge-indicator {
    position: absolute;
    width: 4px;
    height: 80px;
    background: #444;
    left: 50%;
    bottom: 0;
    transform-origin: bottom center;
    transform: rotate(-90deg);
    transition: transform 1s ease-out;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.score-label {
    font-size: 1rem;
    color: #666;
}

.result-details {
    margin-bottom: 2rem;
}

.result-details h4 {
    margin-bottom: 1rem;
    color: #333;
}

.metric {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.metric-name {
    font-weight: 500;
}

.metric-value {
    font-weight: 600;
}

.result-verdict {
    margin-bottom: 2rem;
}

.verdict {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    display: none;
}

.verdict i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.verdict h4 {
    margin-bottom: 0.5rem;
}

.verdict-ai {
    border-left: 4px solid #dc3545;
}

.verdict-ai i {
    color: #dc3545;
}

.verdict-human {
    border-left: 4px solid #28a745;
}

.verdict-human i {
    color: #28a745;
}

.verdict-mixed {
    border-left: 4px solid #fd7e14;
}

.verdict-mixed i {
    color: #fd7e14;
}

.verdict-humanized {
    background-color: #dff7e9;
    border-left: 5px solid #10b981;
}

.verdict-humanized i {
    color: #10b981;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .detector-container {
        padding: 1.5rem;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        max-width: 400px;
        width: 100%;
    }
    
    .result-actions {
        flex-direction: column;
    }
}

/* Badge styles */
.badge {
    display: inline-block;
    background-color: #ff5757;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.humanized-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.badge-success {
    background-color: #10b981;
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.badge-success::before {
    content: "✓";
    margin-right: 4px;
    font-weight: bold;
}

/* CTA Section Styles */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.cta-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-box.new-feature {
    border: 2px solid var(--primary-color);
    position: relative;
}

.cta-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cta-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.cta-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.5;
}

.cta-features {
    margin-bottom: 1.5rem;
}

.feature {
    margin-bottom: 0.5rem;
    color: #555;
}

.feature i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .converter-container {
        padding: 2rem;
    }
    
    .options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .option {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .converter-section {
        padding: 4rem 1.5rem;
    }
    
    .converter-section h2 {
        font-size: 2rem;
    }
    
    .converter-container {
        padding: 1.5rem;
    }
    
    .input-container h3, .output-container h3 {
        font-size: 1.2rem;
    }
    
    .converter-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-button {
        width: 100%;
        justify-content: center;
    }
    
    .detection-section {
        padding: 4rem 1.5rem;
    }
    
    .results-visualization {
        padding: 1.5rem;
    }
    
    .improvement-stats {
        flex-wrap: wrap;
    }
    
    .stat {
        width: 50%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .converter-section h2 {
        font-size: 1.8rem;
    }
    
    .converter-section > p {
        font-size: 1rem;
    }
    
    textarea {
        height: 200px;
    }
    
    .meter-container {
        flex-direction: column;
    }
    
    .meter {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .techniques-container {
        flex-direction: column;
    }
    
    .technique {
        width: 100%;
    }
    
    .stat {
        width: 100%;
        margin-bottom: 1rem;
    }
}
