* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}

body {
  background: #f7f7f8;
  color: #1b1e26;
  line-height: 1.6;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    opacity: 0.95;
}

.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

.btn-schedule {
    background: linear-gradient(135deg, #ba4270, #d63384);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(186, 66, 112, 0.3);
}

.btn-schedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 66, 112, 0.4);
}

/* Contact Section */
.contact-section {
  padding: 50px 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.contact-form {
  width: 36%;
}

.contact-form h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 100px;
  color: #36536B;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
}

form input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.checkbox {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin: 15px 0;
}

.submit-btn {
  background: #1b1e26;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.partner-logos {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-logos p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #36536B;
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
}

.logos img {
    width: 100px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    border-color: #ba4270;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: #ba4270;
}