 * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
    
    body {
      background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      min-height: 100vh;
      padding: 40px 20px;
      overflow-x: hidden;
    }
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }
    
    .nav-links {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .nav-links a {
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      color: white;
      text-decoration: none;
      border-radius: 12px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .hero-section {
      text-align: center;
      margin-bottom: 50px;
      padding: 60px 20px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
      animation: fadeIn 0.6s ease;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
      border-radius: 50%;
      opacity: 0.1;
      animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(10deg); }
    }
    
    .hero-section h1 {
      font-size: 3rem;
      color: #1a1a1a;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }
    
    .hero-section .subtitle {
      font-size: 1.2rem;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }
    
    .contact-grid {
      display: flex;
      gap: 40px;
      margin-top: 30px;
      align-items: flex-start;
    }
    
    .contact-info-card {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      animation: slideInLeft 0.6s ease;
      flex: 1;
      min-width: 0;
    }
    
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .contact-info-card h2 {
      font-size: 1.8rem;
      color: #1a1a1a;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .contact-info-card h2 i {
      color: #00bcd4;
    }
    
    .info-item {
      margin-bottom: 30px;
      padding: 20px;
      background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
      border-radius: 12px;
      transition: all 0.3s ease;
      border-left: 4px solid #00bcd4;
    }
    
    .info-item:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 20px rgba(0, 188, 212, 0.2);
    }
    
    .info-label {
      font-size: 0.85rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      font-weight: 600;
    }
    
    .info-value {
      font-size: 1.3rem;
      color: #1a1a1a;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .info-value i {
      color: #00bcd4;
      font-size: 1.1rem;
    }
    
    .availability {
      font-size: 0.9rem;
      color: #999;
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .availability i {
      color: #48bb78;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    .social-link {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
      color: white;
      border-radius: 12px;
      text-decoration: none;
      font-size: 1.3rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    }
    
    .social-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
    }
    
    .form-card {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      animation: slideInRight 0.6s ease;
      flex: 1.2;
      min-width: 0;
    }
    
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .form-card h2 {
      font-size: 1.8rem;
      color: #1a1a1a;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .form-card h2 i {
      color: #00bcd4;
    }
    
    .success-message {
      display: none;
      background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
      color: white;
      padding: 16px 20px;
      border-radius: 12px;
      margin-bottom: 25px;
      animation: slideDown 0.5s ease;
      box-shadow: 0 5px 20px rgba(72, 187, 120, 0.3);
    }
    
    .success-message.show {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
    }
    
    .form-row .form-group {
      flex: 1;
      min-width: 0;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    label {
      display: block;
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 8px;
      font-weight: 600;
    }
    
    label .required {
      color: #e53e3e;
    }
    
    input,
    textarea {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 1rem;
      font-family: inherit;
      transition: all 0.3s ease;
      background: #fafafa;
    }
    
    input:focus,
    textarea:focus {
      outline: none;
      border-color: #00bcd4;
      box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
      background: white;
      transform: translateY(-2px);
    }
    
    input::placeholder,
    textarea::placeholder {
      color: #bbb;
    }
    
    input.error,
    textarea.error {
      border-color: #e53e3e;
      background: #fff5f5;
    }
    
    input.error:focus,
    textarea.error:focus {
      box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
    }
    
    textarea {
      resize: vertical;
      min-height: 140px;
    }
    
    .error-message {
      display: none;
      color: #e53e3e;
      font-size: 0.85rem;
      margin-top: 6px;
    }
    
    .error-message.show {
      display: flex;
      align-items: center;
      gap: 5px;
      animation: shake 0.3s ease;
    }
    
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-5px); }
      75% { transform: translateX(5px); }
    }
    
    .submit-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 40px;
      background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
      float: right;
      box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
    }
    
    .submit-button:hover:not(:disabled) {
      transform: translateX(5px);
      box-shadow: 0 8px 30px rgba(0, 188, 212, 0.5);
    }
    
    .submit-button:hover:not(:disabled) i {
      transform: translateX(5px);
    }
    
    .submit-button i {
      transition: transform 0.3s ease;
    }
    
    .submit-button:disabled {
      background: #ccc;
      color: #666;
      box-shadow: none;
      cursor: not-allowed;
    }
    
    .quick-stats {
      display: flex;
      gap: 20px;
      margin-top: 40px;
    }
    
    .stat-box {
      flex: 1;
      min-width: 0;
      background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
      padding: 25px;
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
      border-top: 3px solid #00bcd4;
    }
    
    .stat-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .stat-label {
      color: #666;
      font-size: 0.9rem;
      margin-top: 5px;
    }
    
    @media (max-width: 1024px) {
      .contact-grid {
        flex-direction: column;
        gap: 30px;
      }
      
      .contact-info-card,
      .form-card {
        flex: 1;
        width: 100%;
      }
      
      .hero-section h1 {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 640px) {
      body {
        padding: 20px 5px;
      }
      
      .container {
        padding: 0;
        width: 100%;
      }
      
      .hero-section {
        padding: 30px 15px;
        margin-left: 5px;
        margin-right: 5px;
      }
      
      .hero-section h1 {
        font-size: 1.8rem;
      }
      
      .hero-section .subtitle {
        font-size: 0.95rem;
      }
      
      .form-row {
        flex-direction: column;
      }
      
      .form-row .form-group {
        width: 100%;
      }
      
      .form-card, .contact-info-card {
        padding: 20px 15px;
        margin-left: 5px;
        margin-right: 5px;
        width: calc(100% - 10px);
      }
      
      .submit-button {
        width: 100%;
        justify-content: center;
        float: none;
      }
      
      .quick-stats {
        flex-direction: column;
        gap: 15px;
      }
      
      .stat-box {
        width: 100%;
      }
      
      .social-links {
        justify-content: center;
      }
      
      .nav-links {
        justify-content: center;
        margin-left: 5px;
        margin-right: 5px;
      }
      
      .info-value {
        font-size: 1.1rem;
        word-break: break-word;
      }
      
      input,
      textarea {
        font-size: 16px;
      }
    }