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

body {
    font-family: 'Inter', sans-serif;
}
/* General Comparison Layout */
.comparison-header {
    text-align: center;
    padding: 4.5rem 1.5rem; /* 3rem 1rem -> 4.5rem 1.5rem */
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.comparison-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.75rem; /* 0.5rem -> 0.75rem */
}

.comparison-header .vs {
    font-size: 1.5rem;
    color: #6c757d;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* 2rem -> 3rem */
    max-width: 1200px;
    margin: 4.5rem auto; /* 3rem -> 4.5rem */
    padding: 0 3rem; /* 0 2rem -> 0 3rem */
}

.tool-column {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    padding: 3rem; /* 2rem -> 3rem */
}

.tool-column h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem; /* 2rem -> 3rem */
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.75rem; /* 0.5rem -> 0.75rem */
    display: inline-block;
}

/* Comparison Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem; /* 2rem -> 3rem */
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem; /* 1rem -> 1.5rem */
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.feature-name {
    font-weight: bold;
    font-size: 1.1rem;
}

/* VS Separator */
.vs-separator-container {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1; /* Span across both columns */
    margin: -1.5rem 0; /* -1rem -> -1.5rem */
}

.vs-circle {
    background-color: #007bff;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    z-index: 10;
}
