* {margin:0; padding:0; box-sizing:border-box;}
body {font-family:'Nunito Sans',sans-serif; background-color:#f9f9f9; color:#333;}

header {width:100%; background:#fff; border-bottom:1px solid #e0e0e0; position:sticky; top:0; z-index:1000; box-shadow:0 2px 10px rgba(0,0,0,0.1);}
.container {max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; padding:15px 20px;}
.logo img {height:40px;}
nav {display:flex; align-items:center; gap:25px;}
nav ul {list-style:none; display:flex; align-items:center; gap:20px;}
nav ul li {position:relative;}
nav a {text-decoration:none; color:#252552; font-weight:600; font-size:15px; padding:8px 14px; border-radius:6px; transition:color 0.25s, background-color 0.25s;}
nav a:hover {color:#fff; background-color:#252552;}

.dropdown-content {display:flex; flex-direction:column; position:absolute; top:45px; left:0; background:#fff; border:1px solid #e0e0e0; border-radius:8px; overflow:hidden; opacity:0; visibility:hidden; transform:translateY(-12px); transition:all 0.3s ease; min-width:200px; z-index:10; box-shadow:0 5px 15px rgba(0,0,0,0.1);}
.dropdown-content a {padding:12px 20px; color:#252552; transition:background-color 0.5s;}
.dropdown-content a:hover {background-color:#1a1a3a;}
.dropdown:hover .dropdown-content {opacity:1; visibility:visible; transform:translateY(0);}
.arrow {display:inline-block; width:0; height:0; margin-left:6px; vertical-align:middle; border-left:5px solid transparent; border-right:5px solid transparent; border-top:5px solid #252552; transition:border-top-color 0.25s;}
.dropdown > a:hover .arrow {border-top-color:#fff;}

.dashboard-btn, .cta-btn {border-radius:8px; font-weight:600; text-decoration:none; transition:all 0.2s ease;}
.dashboard-btn {padding:12px 28px; font-size:15px; background:#252552; color:#fff; display:inline-block; margin-left:20px;}
.cta-btn {padding:14px 32px; font-size:1rem; color:#fff; background:#252552; display:inline-block;}
.dashboard-btn:hover, .cta-btn:hover {background:#1a1a3a; transform:translateY(-2px); box-shadow:0 4px 12px rgba(37,37,82,0.15);}
.dashboard-btn:active, .cta-btn:active {transform:translateY(0); box-shadow:0 2px 6px rgba(37,37,82,0.2);}

.hero {
    background-image: url("https://synesto.de/assets/img/pexels-brett-sayles-2881232.jpg"); 
    padding:130px 20px 130px 20px; text-align:center; border-bottom:3px solid #252552; color:#fff;}
.hero-container {max-width:800px; margin:0 auto;}
.hero h1 {font-size:2.8rem; font-weight:700; margin-bottom:15px; opacity:0; transform:translateY(20px); animation:fadeUp 0.8s forwards; animation-delay:0.2s;}
.hero h2 {font-size:1.9rem; font-weight:600; margin-bottom:25px; opacity:0; transform:translateY(20px); animation:fadeUp 0.8s forwards; animation-delay:0.4s;}
.hero p {font-size:1.15rem; line-height:1.6; margin-bottom:40px; opacity:0; transform:translateY(20px); animation:fadeUp 0.8s forwards; animation-delay:0.6s;}
.hero-buttons {display:flex; justify-content:center; flex-wrap:wrap;}

@keyframes fadeUp {to {opacity:1; transform:translateY(0);}}

section {padding:80px 20px;}
.section-title {text-align:center; font-size:2.2rem; margin-bottom:15px; color:#252552; font-weight:700;}
.section-subtitle {text-align:center; font-size:1.1rem; color:#666; margin-bottom:50px; max-width:600px; margin-left:auto; margin-right:auto;}
.grid-container {max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); gap:30px;}

.features {
    background: #fff;
    color: #333;
}
.features .section-title {
    color: #252552;
    margin-bottom: 60px;
}
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.feature-item {
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.2s ease;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 2px solid #e0e8ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #252552;
    transition: all 0.2s ease;
}
.feature-item:hover .feature-icon {
    background: #252552;
    color: #fff;
    border-color: #252552;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37,37,82,0.15);
}
.feature-item h3 {
    font-size: 1.4rem;
    color: #252552;
    margin-bottom: 20px;
    font-weight: 600;
}
.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
    animation: fadeUp 0.8s forwards;
}

.grid-item {
    background: #fff;
    color: #333;
    padding:30px 25px; 
    border-radius:12px; 
    text-align:center; 
    transition:transform 0.2s ease, box-shadow 0.2s ease, opacity 0.6s; 
    opacity:0; 
    transform:translateY(30px);
    border: 1px solid #e0e8ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.grid-item.visible {opacity:1; transform:translateY(0);}
.grid-item:hover {
    transform:translateY(-4px); 
    box-shadow:0 8px 25px rgba(37,37,82,0.12);
    border-color: #252552;
}
.grid-item h3 {font-size:1.3rem; margin-bottom:15px; color:#252552; font-weight:600;}
.grid-item p {color:#666; font-size:1rem; line-height:1.6; margin-bottom: 20px;}
.grid-item .price {font-size:1.5rem; color:#252552; font-weight:700; margin-bottom:20px;}

.grid-item .cta-btn {
    background: #252552;
    color: #fff;
    border: none;
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 12px 24px;
}
.grid-item .cta-btn:hover {
    background: #1a1a3a;
    transform: translateY(-2px);
}

.stats {background:#252552; color:#fff; text-align:center;}
.stats .section-title {color:#fff;}
.stats .section-subtitle {color:#cce7ff;}
.stats .grid-item {
    background:rgba(255,255,255,0.08); 
    border:1px solid rgba(255,255,255,0.1); 
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    color: #fff;
}
.stats .grid-item:hover {
    background:rgba(255,255,255,0.12);
    border-color:rgba(255,255,255,0.2);
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}
.stats .grid-item h3 {font-size:3rem; color:#fff;}
.stats .grid-item p {color:#cce7ff; font-size:1.1rem;}

.payment {
    background: #1a1a2e;
    color: #fff;
}
.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.payment-text {
    padding-right: 20px;
}
.payment-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}
.payment-description {
    color: #cce7ff;
    font-size: 1.1rem;
    line-height: 1.7;
}
.payment-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.payment-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border-radius: 12px;
    transition: all 0.2s ease;
    opacity: 1;
    transform: translateY(0);
}
.payment-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.payment-item img {
    height: 60px;
    width: auto;
}

@media(max-width:768px){
    .payment-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .payment-text {
        padding-right: 0;
    }
    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

footer {background:#252552; color:#fff; padding:60px 20px; font-size:0.95rem; border-top:3px solid #4a4a9e;}
.footer-container {max-width: 1200px;
    margin: 0 auto;
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    justify-items: center;}
.footer-column h3 {margin-bottom:20px; font-size:1.2rem; font-weight:600; color:#cce7ff;}
.footer-column ul {list-style:none; padding:0; line-height:2.2;}
.footer-column ul li {transition:color 0.3s; cursor:pointer;}
.footer-column ul li:hover {color:#cce7ff;}
.footer-column p {line-height:1.8;}
.footer-column a {color:#fff; text-decoration: none;}
.footer-bottom {background:#333365; color:#cce7ff; padding:13px 20px; text-align:center; font-size:0.9rem;}

@media(max-width:768px){
    .container{flex-direction:column; gap:15px;} 
    nav ul{flex-direction:column; gap:10px;} 
    .dashboard-btn{margin-left:0;width:100%; text-align:center;}
    .hero h1{font-size:2.2rem;}
    .hero h2{font-size:1.6rem;}
    .grid-container {grid-template-columns:1fr;}
    .stats .grid-container {grid-template-columns:repeat(2,1fr);}
    .payment-item {padding:15px;}
}



/* Legal-Seiten Container */
.legal-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  color: #333;
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.8;
}

/* Überschriften */
.legal-container h1,
.legal-container h2,
.legal-container h3 {
  color: #252552;
  font-weight: 700;
  margin-bottom: 15px;
}

.legal-container h1.page-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.legal-container .page-subtitle {
  display: block;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* Abschnitte */
.legal-container .section {
  margin-bottom: 40px;
}

.legal-container .section p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
}

.legal-container a {
  color: #252552;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal-container a:hover {
  color: #4a4a9e;
}

/* Kontakt-Box */
.contact-section {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.contact-section h3 {
  color: #252552;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.contact-section p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}
.contact-section a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  background: #252552;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-section a:hover {
  background: #4a4a9e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Listen & Bullet Points */
.legal-container ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.legal-container ul li::marker {
  color: #252552;
  font-weight: bold;
}

/* Responsive Anpassungen */
@media(max-width:768px) {
  .legal-container {
    padding: 30px 20px;
    margin: 50px 15px;
  }
  .legal-container h1.page-title {
    font-size: 2rem;
  }
  .contact-section h3 {
    font-size: 1.1rem;
  }
}





.error-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex
;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    flex-direction: column;

}

    .error-code {
      font-size: clamp(3rem, 8vw, 4.5rem);
      font-weight: 800;
      color: #ef4444;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .back-button {
      display: inline-block;
      background: #252552;
      color: white;
      padding: 0.75rem 1.5rem;
      text-decoration: none;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
      margin-bottom: 2rem;
            margin-top: 2rem;
    }

    .back-button:hover {
    background: #1a1a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 37, 82, 0.15);
    }

    .contact-info {
margin-top: 1rem;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }

    .contact-info h3 {
      font-size: 0.875rem;
      color: #64748b;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .contact-info a {
      color: #252552;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.125rem;
      transition: all 0.2s ease;
      position: relative;
    }

    .contact-info a:hover {
      color: #1a1a3a;
      transform: translateY(-1px);
    }























.services-hero {
  background: linear-gradient(135deg, #252552 0%, #1a1a3a 100%);
  padding: 60px 20px;
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}

.services-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.services-hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
  color: #cce7ff;
}

.services-features {
  padding: 60px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e8ff;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
    display: flex
;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #252552;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.2rem;
  color: #252552;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-products {
  padding: 80px 20px;
  background: #fff;
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  color: #333;
  border: 1px solid #e0e8ff;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37,37,82,0.15);
  border-color: #252552;
}

.product-card.featured {
  border-color: #252552;
  border-width: 2px;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #252552;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-content {
  padding: 25px;
  flex-grow: 1;
}

.product-header {
  text-align: left;
  margin-bottom: 20px;
}

.product-header h3 {
  font-size: 1.4rem;
  color: #252552;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-price {
  margin-bottom: 0;
}

.product-price .price {
  font-size: 1.8rem;
  color: #252552;
  font-weight: 700;
}

.product-price .period {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.spec-section {
  margin-bottom: 25px;
}

.spec-section h4 {
  color: #999;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.spec-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-section ul li {
  padding: 5px 0;
  color: #666;
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.spec-section ul li::before {
  content: "●";
  color: #252552;
  position: absolute;
  left: 0;
  top: 5px;
}

.checkmark-list li::before {
  content: "✓";
  color: #4CAF50;
  font-weight: bold;
}

.product-footer {
  padding: 0 25px 25px;
  margin-top: auto;
}

.product-card .cta-btn {
  background: #252552;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.product-card .cta-btn:hover {
  background: #1a1a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,37,82,0.2);
}

@media(max-width: 768px) {
  .webserver-hero-content h1 {
    font-size: 2rem;
  }
  
  .webserver-hero-content p {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card {
    padding: 25px 20px;
  }
}

.current-partners {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

/* Grid Wrapper */
.partners-grid-wrapper {
  width: 100%;
  padding: 0 20px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.partner-card {
  background: var(--card-color, #252552);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.partner-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
}

.partner-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.partner-card p {
  font-size: 0.95rem;
  color: #eee;
}

@media(max-width:768px){
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}


#dark {
  background: #0d0d1a;
  color: #fff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.synesto-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}
.synesto-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
  border-left: 4px solid #252552;
  padding-left: 12px;
}

.synesto-hardware {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.synesto-hardware-text, .synesto-hardware-image {
  flex: 1 1 300px;
}
.synesto-hardware-text p {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.synesto-hardware-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.synesto-hardware-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.synesto-hostsystems {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}
.synesto-hostsystem-card {
  background: #252552;
  flex: 1 1 250px;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.synesto-hostsystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.synesto-hostsystem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
}
.synesto-hostsystem-card ul {
  list-style: disc inside;
  color: #ccc;
  margin: 0;
  padding-left: 15px;
}

.synesto-webinterface {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
}
.synesto-webinterface-text, .synesto-webinterface-image {
  flex: 1 1 300px;
}
.synesto-webinterface-text p {
  color: #ccc;
  font-size: 1.05rem;
}
.synesto-webinterface-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.synesto-webinterface-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.synesto-datacenter {
  background: #1a1a2e;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 80px;
}
.synesto-datacenter h2 {
  text-align: center;
    color: #ffffff;
}
.synesto-datacenter-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.synesto-datacenter-info p {
  flex: 1 1 250px;
  background: #252552;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #ccc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.synesto-datacenter-info p:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.synesto-ddos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 80px;
  justify-content: center;
}
.synesto-ddos-card {
  background: #252552;
  flex: 1 1 250px;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.synesto-ddos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.synesto-ddos-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
color: #ffffff;
}
.synesto-ddos-card p {
  color: #ccc;
  font-size: 0.95rem;
}

@media(max-width:900px) {
  .synesto-hardware,
  .synesto-webinterface {
    flex-direction: column-reverse;
  }
  .synesto-datacenter-info,
  .synesto-hostsystems,
  .synesto-ddos {
    flex-direction: column;
  }
}



    .contact-container {
      max-width: 900px;
      margin: -60px auto 80px;
      padding: 40px 30px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      text-align: center;
    }

    .contact-box {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 30px;
    }

    .contact-card {
      flex: 1 1 300px;
      background: #f0f4ff;
      border-radius: 16px;
      padding: 25px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      cursor: default;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .contact-card h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: #252552;
    }

    .contact-card p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 8px;
    }

    .contact-card a {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      background: #252552;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .contact-card a:hover {
      background: #4a4a9e;
      transform: translateY(-2px);
    }

    @media(max-width:768px) {
      .contact-box {
        flex-direction: column;
        gap: 25px;
      }
    }