Changed around line 1
+ :root {
+ --primary-color: #003366;
+ --secondary-color: #ff6600;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 2rem 0;
+ text-align: center;
+ }
+
+ .header__title {
+ font-size: 2.5rem;
+ margin: 0;
+ }
+
+ .header__subtitle {
+ font-size: 1.2rem;
+ margin: 0.5rem 0 0;
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('/images/hero-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ color: white;
+ padding: 4rem 0;
+ text-align: center;
+ }
+
+ .hero__title {
+ font-size: 2.5rem;
+ margin: 0;
+ }
+
+ .hero__text {
+ font-size: 1.2rem;
+ margin: 1rem 0 0;
+ }
+
+ .devices {
+ padding: 4rem 0;
+ }
+
+ .devices__title {
+ font-size: 2rem;
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .devices__grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .device-card {
+ background: white;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .device-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .device-card__image {
+ height: 200px;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .device-card__title {
+ font-size: 1.5rem;
+ margin: 1rem;
+ }
+
+ .device-card__description {
+ font-size: 1rem;
+ margin: 0 1rem 1rem;
+ }
+
+ .footer {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 2rem 0;
+ text-align: center;
+ }
+
+ .footer__nav {
+ margin-top: 1rem;
+ }
+
+ .footer__nav a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ @media (max-width: 768px) {
+ .header__title {
+ font-size: 2rem;
+ }
+
+ .hero__title {
+ font-size: 2rem;
+ }
+
+ .devices__grid {
+ grid-template-columns: 1fr;
+ }
+ }