Changed around line 1
+ :root {
+ --primary: #2a4b8d;
+ --secondary: #f5f5f5;
+ --accent: #e63946;
+ --text: #333;
+ --light: #fff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary), #1a365d);
+ color: var(--light);
+ padding: 2rem 5%;
+ min-height: 80vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, #fff, #e0e0e0);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--light);
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .cta-button {
+ background: var(--accent);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ font-weight: 500;
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ gap: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ font-weight: 800;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
+ }
+
+ .primary-button {
+ background: var(--accent);
+ color: var(--light);
+ padding: 1rem 2.5rem;
+ border-radius: 30px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ section {
+ padding: 5rem 5%;
+ }
+
+ .service-grid, .client-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .service-card, .client-card {
+ background: var(--secondary);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .service-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .service-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .stats {
+ display: flex;
+ justify-content: space-around;
+ margin-top: 3rem;
+ text-align: center;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 3rem auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ .submit-button {
+ background: var(--primary);
+ color: var(--light);
+ padding: 1rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 1rem;
+ transition: background 0.3s;
+ }
+
+ footer {
+ background: var(--primary);
+ color: var(--light);
+ padding: 3rem 5%;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--light);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .stats {
+ flex-direction: column;
+ gap: 2rem;
+ }
+ }