:root { --primary: #171617; --secondary: #1f3575; --accent: #8B5CF6; --bg-light: #ffffff; --text-dark: #171617; --text-muted: #6B7280; --border-light: #E5E7EB; --radius: 8px; --spacing-xs: 4px; --spacing-sm: 8px; --spacing-md: 16px; --spacing-lg: 32px; --spacing-xl: 64px; --spacing-xxl: 96px; --shadow-sm: 0 1px 2px rgba(0,0,0,0.05); --shadow-md: 0 4px 6px rgba(0,0,0,0.1); --shadow-lg: 0 10px 15px rgba(0,0,0,0.1); } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--bg-light); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: var(--spacing-md); } h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.8rem; } p { margin-bottom: var(--spacing-md); } a { color: var(--secondary); text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; } a:hover { color: var(--primary); transform: translateY(-1px); } img { max-width: 100%; height: auto; display: block; } .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); } .header { position: sticky; top: 0; z-index: 1000; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light); padding: var(--spacing-md) 0; } .header-content { display: flex; justify-content: space-between; align-items: center; } .logo { font-weight: 700; font-size: 1.5rem; color: var(--text-dark); } .nav-list { display: flex; list-style: none; gap: var(--spacing-lg); } .nav-list a { color: var(--text-dark); font-weight: 500; font-size: 1rem; position: relative; } .nav-list a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--secondary); transition: width 0.3s ease; } .nav-list a:hover::after { width: 100%; } .nav-buttons { display: flex; gap: var(--spacing-md); } .btn { display: inline-flex; align-items: center; justify-content: center; padding: var(--spacing-sm) var(--spacing-md); border-radius: var(--radius); font-weight: 500; cursor: pointer; border: 1px solid transparent; transition: all 0.2s ease; white-space: nowrap; } .btn-primary { background-color: var(--primary); color: var(--bg-light); border-color: var(--primary); } .btn-primary:hover { background-color: var(--secondary); border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-md); } .btn-secondary { background-color: transparent; color: var(--primary); border-color: var(--border-light); } .btn-secondary:hover { background-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); } .btn-accent { background-color: var(--secondary); color: var(--bg-light); border-color: var(--secondary); } .btn-accent:hover { background-color: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); } .hamburger { display: none; background: none; border: none; cursor: pointer; padding: var(--spacing-sm); } .hamburger svg { width: 24px; height: 24px; fill: var(--text-dark); } .mobile-nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; } .mobile-nav-overlay.open { display: flex; } .mobile-nav-list { list-style: none; text-align: center; } .mobile-nav-list li { margin-bottom: var(--spacing-lg); } .mobile-nav-list a { font-size: 2rem; color: var(--text-dark); font-weight: 600; } .close-btn { position: absolute; top: var(--spacing-md); right: var(--spacing-md); background: none; border: none; cursor: pointer; } .close-btn svg { width: 32px; height: 32px; fill: var(--text-dark); } .hero { text-align: center; padding: var(--spacing-xxl) var(--spacing-md); background-color: var(--bg-light); } .hero h1 { font-size: 4rem; max-width: 900px; margin-left: auto; margin-right: auto; } .hero p { font-size: 1.5rem; color: var(--text-muted); max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: var(--spacing-lg); } .hero-eyebrow { font-size: 1rem; font-weight: 500; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--spacing-md); } .hero-buttons { display: flex; justify-content: center; gap: var(--spacing-md); } .section { padding: var(--spacing-xl) 0; } .section-heading { text-align: center; margin-bottom: var(--spacing-xl); } .section-heading h2 { font-size: 3rem; } .grid { display: grid; gap: var(--spacing-lg); } .grid-2-cols { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .grid-3-cols { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } .grid-4-cols { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .card { background-color: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border-light); overflow: hidden; transition: all 0.3s ease; transform: translateY(0); box-shadow: none; } .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); } .card-image { width: 100%; height: 250px; object-fit: cover; } .card-content { padding: var(--spacing-md); } .card-title { font-size: 1.25rem; margin-bottom: var(--spacing-sm); } .card-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--spacing-sm); } .card-text { font-size: 1rem; margin-bottom: var(--spacing-md); } .icon-wrapper { display: flex; justify-content: center; align-items: center; width: 60px; height: 60px; border-radius: 50%; background-color: rgba(31, 53, 117, 0.1); margin-bottom: var(--spacing-md); } .icon-wrapper svg { width: 32px; height: 32px; fill: var(--secondary); } .timeline { position: relative; padding: var(--spacing-xl) 0; } .timeline::before { content: ''; position: absolute; left: 50%; top: 0; width: 2px; height: 100%; background-color: var(--border-light); transform: translateX(-50%); } .timeline-item { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--spacing-xl); } .timeline-item:nth-child(odd) .timeline-content { order: 2; text-align: right; margin-left: var(--spacing-lg); } .timeline-item:nth-child(even) .timeline-content { order: 1; text-align: left; margin-right: var(--spacing-lg); } .timeline-dot { position: relative; width: 16px; height: 16px; background-color: var(--secondary); border-radius: 50%; flex-shrink: 0; z-index: 1; } .timeline-content { flex: 1; padding: var(--spacing-md); background-color: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border-light); animation: slideUp 0.7s ease forwards; opacity: 0; } .timeline-content.visible { opacity: 1; transform: translateY(0); } .contact-form { max-width: 600px; margin: 0 auto; padding: var(--spacing-lg); border: 1px solid var(--border-light); border-radius: var(--radius); } .form-group { margin-bottom: var(--spacing-md); } .form-group label { display: block; margin-bottom: var(--spacing-sm); font-weight: 500; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: var(--spacing-sm); border: 1px solid var(--border-light); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 1rem; } .form-group textarea { min-height: 120px; resize: vertical; } .footer { background-color: var(--primary); color: rgba(255, 255, 255, 0.8); padding: var(--spacing-xl) 0; text-align: center; } .footer-content { display: flex; flex-direction: column; align-items: center; gap: var(--spacing-md); } .footer-links { display: flex; gap: var(--spacing-lg); } .footer-links a { color: rgba(255, 255, 255, 0.8); } .footer-links a:hover { color: var(--bg-light); transform: translateY(-1px); } @media (min-width: 768px) { h1 { font-size: 5rem; } h2 { font-size: 3.5rem; } .hero { padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xxl) var(--spacing-md); } .hero h1 { font-size: 5.5rem; } .timeline::before { left: 50%; } .timeline-item:nth-child(odd) { justify-content: flex-start; } .timeline-item:nth-child(even) { justify-content: flex-end; } .timeline-item:nth-child(odd) .timeline-dot { margin-left: calc(50% - 8px); } .timeline-item:nth-child(even) .timeline-dot { margin-right: calc(50% - 8px); } .timeline-content { max-width: 45%; } .timeline-item:nth-child(odd) .timeline-content { margin-left: var(--spacing-lg); } .timeline-item:nth-child(even) .timeline-content { margin-right: var(--spacing-lg); } } @media (max-width: 768px) { .nav-list, .nav-buttons { display: none; } .hamburger { display: block; } .hero h1 { font-size: 3rem; } .hero p { font-size: 1.2rem; } .hero-buttons { flex-direction: column; } .btn { width: 100%; } .timeline::before { left: var(--spacing-md); } .timeline-item { flex-direction: column; align-items: flex-start; } .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { order: unset; text-align: left; margin: 0; margin-top: var(--spacing-md); max-width: 100%; } .timeline-dot { margin-left: calc(var(--spacing-md) - 8px); margin-top: var(--spacing-md); } .section-heading h2 { font-size: 2.5rem; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }