Changed around line 1
+ :root {
+ --primary-color: #4CAF50;
+ --secondary-color: #FFC107;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ text-align: center;
+ padding: 60px 20px;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 10px;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 20px;
+ }
+
+ .quiz-section {
+ max-width: 600px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .quiz-container {
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .question {
+ margin-bottom: 20px;
+ }
+
+ .options button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 10px 20px;
+ margin: 5px;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .options button:hover {
+ background: var(--secondary-color);
+ }
+
+ .result {
+ margin-top: 20px;
+ }
+
+ .info-section {
+ max-width: 800px;
+ margin: 40px auto;
+ }
+
+ .info-cards {
+ display: flex;
+ gap: 20px;
+ flex-wrap: wrap;
+ }
+
+ .card {
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ flex: 1 1 calc(50% - 20px);
+ }
+
+ .card h3 {
+ color: var(--primary-color);
+ margin-bottom: 10px;
+ }
+
+ footer {
+ text-align: center;
+ padding: 20px;
+ background: var(--primary-color);
+ color: white;
+ margin-top: 40px;
+ }
+
+ @media (max-width: 768px) {
+ .info-cards {
+ flex-direction: column;
+ }
+
+ .card {
+ flex: 1 1 100%;
+ }
+ }