/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Open+Sans:wght@400;600&display=swap');

/* Global Styles */
:root {
  --primary: #1a3a6d;
  --accent: #4c8bf5;
  --text: #333;
  --light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Header Styles */
header {
  display: flex;
  align-items: center;
  padding: 20px 5%;
  background: var(--primary);
  color: var(--light);
}

.logo-placeholder {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  margin-right: 20px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(rgba(26,58,109,0.8), rgba(26,58,109,0.9)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2015&q=80');
  background-size: cover;
  color: var(--light);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 5%;
  gap: 30px;
}

.feature-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}

.contact h2 {
  margin-bottom: 25px;
}

.email-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.email-btn:hover {
  background: var(--accent);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: var(--primary);
  color: var(--light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    gap: 20px;
  }
  
  .feature-card {
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .feature-card {
    min-width: 100%;
  }
  
  header {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-placeholder {
    margin: 0 auto 15px;
  }
}
