Changed around line 1
+ :root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a29bfe;
+ --background-color: #f8f9fa;
+ --text-color: #2d3436;
+ --font-family: 'Segoe UI', system-ui, sans-serif;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: var(--font-family);
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ padding: 2rem;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ header h1 {
+ font-size: 2.5rem;
+ color: var(--primary-color);
+ margin-bottom: 0.5rem;
+ }
+
+ header p {
+ font-size: 1.2rem;
+ color: var(--secondary-color);
+ }
+
+ main {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ section {
+ margin-bottom: 2rem;
+ padding: 1.5rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ h2 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ .form-group {
+ margin-bottom: 1rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 600;
+ }
+
+ input[type="number"] {
+ width: 100%;
+ padding: 0.5rem;
+ border: 2px solid var(--secondary-color);
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ button {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 5px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ button:hover {
+ background-color: var(--secondary-color);
+ }
+
+ .result {
+ margin-top: 1.5rem;
+ padding: 1rem;
+ background-color: var(--background-color);
+ border-radius: 5px;
+ }
+
+ .pros-cons .columns {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .pros-cons .column {
+ flex: 1;
+ }
+
+ ul {
+ list-style: none;
+ padding-left: 1rem;
+ }
+
+ ul li {
+ margin-bottom: 0.5rem;
+ position: relative;
+ }
+
+ ul li::before {
+ content: "•";
+ color: var(--primary-color);
+ position: absolute;
+ left: -1rem;
+ }
+
+ footer {
+ text-align: center;
+ margin-top: 2rem;
+ color: var(--secondary-color);
+ }
+
+ @media (max-width: 600px) {
+ .pros-cons .columns {
+ flex-direction: column;
+ }
+ }