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

/* Colors */
:root {
  --dark-blue: #2C3E50;
  --light-gray: #F4F4F4;
  --white: #FFFFFF;
  --bright-blue: #3498DB;
  --medium-blue: #2980B9;
}

/* Base Styles */
body {
  font-family:  sans-serif,Arial;
  line-height: 1.6;
  padding-top: 80px;
  color: var(--dark-blue);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
   font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 1rem; }
p { margin-bottom: 1rem; color: #666; }

/* Buttons */
.btn-primary {
  background: var(--bright-blue);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--medium-blue);
}

.btn-login {
  background: var(--bright-blue);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}

.btn-login:hover {
  background: var(--medium-blue);
}



/* Intro */
.intro {
  padding: 60px 0;
  text-align: center;
}

/* Contact Cards */
.contact-info {
  padding: 60px 0;
  background: var(--light-gray);
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--bright-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-card a {
  color: var(--bright-blue);
  text-decoration: none;
}

/* Social */
.social {
  padding: 60px 0;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--bright-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}

/* Contact Form */
.form-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}


/* ===================================================
   PAGE-SPECIFIC OVERRIDES FOR CONTACT.HTML
   These rules will override main.css for this page only.
   =================================================== */


/* --- Contact Card Shadow Tweak --- */
.contact-card {
  /* The original shadow was a bit dark. This is softer and matches the image better. */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
