Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --background-color: #ecf0f1;
+ --text-color: #2c3e50;
+ --card-background: #ffffff;
+ --accent-color: #e74c3c;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ background: linear-gradient(45deg, #3498db, #2ecc71);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .tagline {
+ font-size: 1.2rem;
+ opacity: 0.9;
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .comparison-tool {
+ background: var(--card-background);
+ border-radius: 15px;
+ padding: 2rem;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ }
+
+ .country-selectors {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 1rem;
+ margin-bottom: 2rem;
+ }
+
+ .country-select {
+ flex: 1;
+ }
+
+ .vs-badge {
+ background: var(--accent-color);
+ color: white;
+ padding: 0.5rem 1rem;
+ border-radius: 50px;
+ font-weight: bold;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ select {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid var(--primary-color);
+ border-radius: 8px;
+ font-size: 1rem;
+ transition: border-color 0.3s;
+ }
+
+ select:focus {
+ outline: none;
+ border-color: var(--secondary-color);
+ }
+
+ .comparison-results {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ }
+
+ .country-data {
+ display: grid;
+ gap: 1rem;
+ }
+
+ .metric {
+ background: var(--background-color);
+ padding: 1.5rem;
+ border-radius: 10px;
+ transition: transform 0.3s;
+ }
+
+ .metric:hover {
+ transform: translateY(-5px);
+ }
+
+ .metric h3 {
+ color: var(--primary-color);
+ margin-bottom: 0.5rem;
+ }
+
+ .value {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--secondary-color);
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary-color);
+ color: white;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .country-selectors {
+ flex-direction: column;
+ }
+
+ .comparison-results {
+ grid-template-columns: 1fr;
+ }
+
+ .vs-badge {
+ margin: 1rem 0;
+ }
+ }