* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #0A1F44;
  color: white;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}
header {
  background-color: #1A2E60;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 2px solid #f2f3f5;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ececf3;
  transition: transform 0.3s ease;
  z-index: 1001;
}
.logo span {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c1c128;
  transition: transform 0.3s ease;
  z-index: 1001;
}
.logo img {
  height: 50px;
  margin-right: 10px;
}
.logo:hover {
  transform: scale(1.05);
}
/* Language Selector Styles */
.language-selector {
  display: flex;
  gap: 5px;
  margin-left: auto;
  margin-right: 20px;
  z-index: 1001;
}
.lang-btn {
  background: #112B5A;
  color: #AFCBFF;
  border: 1px solid #1A2E60;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.lang-btn:hover {
  background: #1A2E60;
  color: white;
}
.lang-btn.active {
  background: #5FA8D3;
  color: white;
  border-color: #5FA8D3;
}
/* Navigation Styles */
.main-nav {
  display: flex;
  align-items: center;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #AFCBFF;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  text-decoration: none;
  color: #f4f4f5;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  display: block;
}
.nav-link:hover {
  color: #ffffff;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 2px;
  background-color: #5FA8D3;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #112B5A;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #1A2E60;
}
.dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-link {
  color: #E0EFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.dropdown-link:hover {
  color: #5FA8D3;
}
/* Hero Section */
.hero {
  background: url('/de/static/images/background.png') no-repeat center center/cover;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 31, 68, 0.7);
  z-index: 1;
}

.button-menu {
  display: flex;
  justify-content: center;
  background-color: #1A2E60;
}
.hero h1,
.hero p {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.hero h1:hover {
  transform: translateY(-5px);
}
.hero p:hover {
  transform: translateY(-3px);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
  color: #AFCBFF;
}

/* NEW: Redesigned Service Section based on image template */
.service-section-redesigned {
  background-color: #e0e9f5; /* Light blue background from the image */
  color: #333; /* Darker text for readability on light background */
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  border-radius: 12px;
  margin-bottom: 2rem; /* Add some space below this section */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for the section */
}

.service-section-redesigned .section-title {
  color: #0A1F44; /* Dark blue for the section title */
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card-redesigned {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-redesigned:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card-redesigned img {
  width: 100%;
  height: 180px; /* Consistent image height */
  object-fit: cover;
  /* Optional: subtle hover effect on image */
  transition: transform 0.3s ease;
}

.service-card-redesigned img:hover {
  transform: scale(1.02);
}

.service-card-redesigned .card-content-redesigned {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allow content to grow and push "read more" down */
}

.service-card-redesigned h3 {
  font-size: 1.15rem;
  color: #0A1F44; /* Dark blue for titles */
  margin-bottom: 10px;
  min-height: 40px; /* Ensure consistent height for titles */
}

.service-card-redesigned p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1; /* Allow paragraph to take up available space */
}

.service-card-redesigned ul {
  font-size: 0.9rem;
  color: #555;
  margin-left: 20px;
  margin-bottom: 15px;
  list-style: disc; /* Use discs for list items */
}
.service-card-redesigned ul li {
  margin-bottom: 5px;
}


.service-card-redesigned .read-more-redesigned {
  display: block; /* Make it a block element to take full width */
  background-color: #5FA8D3; /* Blue button */
  color: white;
  padding: 10px 15px;
  border-radius: 5px; /* Slightly rounded button */
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin-top: 15px; /* Space above the button */
  transition: background-color 0.3s ease;
}

.service-card-redesigned .read-more-redesigned:hover {
  background-color: #3e8bc4;
}


/* Existing Content Sections (now not used for service display) */
.section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}
/* Removed .card and .card.reverse specific styles as they are replaced by .service-card-redesigned for the services section */
/* If you use .card elsewhere in your site, keep its original styles */
.card, .card.reverse { /* These styles are now specifically for if you keep old .card usage elsewhere */
  display: none; /* Temporarily hide if you don't want old card layout */
}


/* Contact Form */
.contact-form {
  background-color: #112B5A;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 2rem auto;
}
.contact-form h2 {
  color: #5FA8D3;
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
}
.contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: #5FA8D3;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #3e8bc4;
}
/* Footer */
footer {
  background-color: #06152F;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #AFCBFF;
}
/* Responsive Styles */
@media screen and (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #0A1F44;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: left 0.3s ease;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    background-color: #112B5A;
    box-shadow: none;
    border-radius: 0;
  }
  .nav-item:hover .dropdown-menu {
    display: none;
  }
  .dropdown-menu.active {
    display: block;
  }
  
  .language-selector {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  /* Hide the old card styles on smaller screens if they are still present */
  .card, .card.reverse {
    flex-direction: column;
  }
  .card img.section-img {
    width: 100%;
  }
  /* Ensure redesigned services respond */
  .services-grid {
    grid-template-columns: 1fr; /* Stack cards on small screens */
  }

  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  header {
    padding: 1rem;
    background-color: wheat;
  }
  
  .language-selector {
    order: 3;
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .logo {
    font-size: 1.25rem;
  }
  .logo span {
            color: #ffcc00;
        }
  footer {
    font-size: 0.8rem;
  }
}
/* Demo Modal */    
/* Demo Modal Styles */
.demo-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 1000;
align-items: center;
justify-content: center;
font-family: 'Inter', sans-serif;
}
.demo-modal.active {
display: flex;
}
.demo-content {
background-color: white;
border-radius: 12px;
width: 800px;
max-width: 90%;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
position: relative;
padding: 30px;
}
.demo-close {
position: absolute;
top: 15px;
right: 15px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #666;
z-index: 2;
}
.demo-columns {
display: flex;
gap: 30px;
}
.demo-form-column {
flex: 1;
min-width: 0;
}
.demo-profile-column {
width: 280px;
display: flex;
flex-direction: column;
gap: 20px;
}
.demo-title {
font-size: 22px;
font-weight: 700;
color: #0A1F44;
margin-bottom: 25px;
line-height: 1.3;
}
.demo-form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 20px;
}
.demo-form-group {
margin-bottom: 15px;
}
.demo-form-group label {
display: block;
font-size: 14px;
color: #333;
margin-bottom: 8px;
font-weight: 500;
}
.demo-form-group input,
.demo-form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
transition: border 0.3s;
}
.demo-form-group input:focus,
.demo-form-group textarea:focus {
border-color: #5FA8D3;
outline: none;
}
.demo-form-group textarea {
min-height: 100px;
resize: vertical;
}
.demo-checkbox {
display: flex;
align-items: center;
margin: 20px 0;
}
.demo-checkbox input {
margin-right: 10px;
}
.demo-checkbox label {
font-size: 13px;
color: #666;
}
.demo-checkbox a {
color: #5FA8D3;
text-decoration: none;
}
.demo-submit {
background-color: #0A1F44;
color: white;
border: none;
padding: 14px;
width: 100%;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s;
}
.demo-submit:hover {
background-color: #1A2E60;
}
/* Profile Card Styles */
.demo-profile-card {
background: #F8FAFF;
border-radius: 10px;
padding: 25px;
text-align: center;
border: 1px solid #E0E8F5;
}
.demo-profile-photo {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto 15px;
border: 3px solid #5FA8D3;
}
.demo-profile-photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.demo-profile-info h3 {
font-size: 18px;
color: #0A1F44;
margin-bottom: 5px;
}
.demo-profile-title {
font-size: 14px;
color: #5FA8D3;
font-weight: 600;
margin-bottom: 15px;
}
.demo-profile-bio {
font-size: 13px;
color: #666;
line-height: 1.5;
margin-bottom: 15px;
}
.demo-profile-contact {
font-size: 13px;
color: #444;
text-align: left;
}
.demo-profile-contact p {
margin-bottom: 8px;
display: flex;
align-items: center;
}
.demo-icon {
margin-right: 8px;
color: #5FA8D3;
}
/* Testimonial Styles */
.demo-testimonial {
background: #F0F5FF;
border-radius: 10px;
padding: 20px;
border-left: 4px solid #5FA8D3;
}
.demo-testimonial blockquote {
font-size: 14px;
color: #333;
line-height: 1.6;
font-style: italic;
margin: 0;
}
/* Responsive Styles */
@media (max-width: 768px) {
.demo-columns {
flex-direction: column;
}
.demo-profile-column {
width: 100%;
order: -1;
margin-bottom: 20px;
}
.demo-form-grid {
grid-template-columns: 1fr;
}
.demo-content {
padding: 20px;
}
.demo-title {
font-size: 20px;
}
}

    /* Update header styles to include demo button */
.header-demo-btn {
  background-color: #4c1ab9;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.header-demo-btn:hover {
  background-color: #3e8bc4;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .header-demo-btn {
    margin-left: 0;
    margin-top: 10px;
    order: 4;
    width: 100%;
  }
}
/* Footer Styles */
.site-footer {
background-color: #2c3e50;
color: #ecf0f1;
padding: 3rem 0 0;
font-family: 'Inter', sans-serif;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-columns {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-column {
padding: 0 15px;
}
.footer-logo {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.footer-logo img {
height: 40px;
margin-right: 10px;
}
.footer-logo span {
font-weight: 700;
font-size: 1.2rem;
}
.footer-mission {
margin-bottom: 1.5rem;
line-height: 1.6;
opacity: 0.9;
}
.footer-title {
font-size: 1.2rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 10px;
}
.footer-title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: #5FA8D3;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
color: #ecf0f1;
text-decoration: none;
transition: color 0.3s;
opacity: 0.9;
}
.footer-links a:hover {
color: #5FA8D3;
opacity: 1;
}
.footer-contact p {
margin-bottom: 1rem;
display: flex;
align-items: center;
opacity: 0.9;
}
.contact-icon {
margin-right: 10px;
font-size: 1.1rem;
}
.footer-social {
display: flex;
gap: 15px;
margin-top: 1.5rem;
}
.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: #34495e;
color: white;
border-radius: 50%;
text-decoration: none;
transition: background-color 0.3s;
}
.social-icon:hover {
background-color: #5FA8D3;
}
.footer-newsletter h4 {
margin-bottom: 1rem;
}
.newsletter-form {
display: flex;
gap: 10px;
}
.newsletter-form input {
flex: 1;
padding: 10px;
border: none;
border-radius: 4px;
font-family: 'Inter', sans-serif;
}
.newsletter-form button {
background-color: #5FA8D3;
color: white;
border: none;
padding: 0 20px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.newsletter-form button:hover {
background-color: #4a8bb8;
}
.footer-bottom {
border-top: 1px solid #34495e;
padding: 1.5rem 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.footer-legal {
margin-bottom: 1rem;
}
.footer-legal p {
margin-bottom: 0.5rem;
opacity: 0.8;
}
.footer-legal-links {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.footer-legal-links a {
color: #ecf0f1;
text-decoration: none;
font-size: 0.9rem;
opacity: 0.8;
transition: opacity 0.3s;
}
.footer-legal-links a:hover {
opacity: 1;
text-decoration: underline;
}
.footer-language {
display: flex;
align-items: center;
gap: 10px;
}
.footer-language span {
opacity: 0.8;
}
/* Verification Page Styles */
.verification-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.verification-form {
  margin: 2rem 0;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.verify-btn {
  background-color: #0066cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.verify-btn:hover {
  background-color: #669dd3;
}
.result-card {
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.result-card.valid {
  background-color: #f0f9f0;
  border-left: 4px solid #4CAF50;
}
.result-card.invalid {
  background-color: #fff0f0;
  border-left: 4px solid #f44336;
}
.download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.hidden {
  display: none;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-style: normal;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    transform: translateX(3px);
  }
  
  .contact-icon {
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }
  
  /* Specific item styles */
  .location {
    background: rgba(156, 204, 101, 0.15);
    color: #9ccc65;
  }
  
  .email {
    background: rgba(77, 208, 225, 0.15);
    color: #4dd0e1;
  }
  
  .phone {
    background: rgba(100, 181, 246, 0.15);
    color: #64b5f6;
  }
  
  .whatsapp {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-contact {
      padding: 10px;
    }
    
    .contact-item {
      padding: 6px 10px;
    }
  }

  /* Existing CSS - no changes needed for the service-section-redesigned itself as it's already good */

/* NEW: Contact Section Styles (added to your existing CSS) */
.contact-main-section {
    background-color: #0A1F44; /* Dark background consistent with header/footer */
    color: white;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.contact-main-section .section-title {
    color: #5FA8D3; /* Blue for the section title */
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: flex-start; /* Align items to the top */
    text-align: left;
}

.contact-info-column {
    padding: 20px;
    background-color: #1A2E60; /* Slightly lighter dark blue */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-title {
    font-size: 1.8rem;
    color: #E0EFFF; /* Light blue for headings */
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 1rem;
    color: #AFCBFF;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Reusing footer-contact styles for consistency in the contact section */
.contact-main-section .footer-contact {
    background: none; /* Override background from footer for this section */
    padding: 0;
    gap: 15px; /* Adjust gap for visual appeal */
}

.contact-main-section .contact-item {
    background: rgba(255, 255, 255, 0.1); /* Subtle background for contact items */
    color: #E0EFFF;
    padding: 12px 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-main-section .contact-item:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-main-section .contact-icon {
    font-size: 1.3rem; /* Slightly larger icons for prominence */
}

/* Specific colors for icons within the new contact section */
.contact-main-section .contact-item.location .contact-icon { color: #9ccc65; }
.contact-main-section .contact-item.email .contact-icon { color: #4dd0e1; }
.contact-main-section .contact-item.phone .contact-icon { color: #64b5f6; }
.contact-main-section .contact-item.whatsapp .contact-icon { color: #4caf50; }


.contact-form-column {
    padding: 20px;
    background-color: white; /* White background for the form for contrast */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #333; /* Dark text for readability on white */
}

.contact-form-title {
    font-size: 1.8rem;
    color: #0A1F44; /* Dark blue for headings */
    margin-bottom: 1.5rem;
}

.contact-form-main .form-group {
    margin-bottom: 1rem;
}

.contact-form-main label {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form-main input,
.contact-form-main textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-main input:focus,
.contact-form-main textarea:focus {
    border-color: #5FA8D3;
    outline: none;
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-contact-btn {
    background-color: #5FA8D3; /* Blue button for submission */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%; /* Make button full width */
    margin-top: 1rem;
}

.submit-contact-btn:hover {
    background-color: #3e8bc4;
    transform: translateY(-2px);
}

/* Responsive adjustments for the new contact section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
    .contact-info-column,
    .contact-form-column {
        padding: 15px;
    }
    .contact-main-section .section-title {
        font-size: 2rem;
    }
    .contact-info-title,
    .contact-form-title {
        font-size: 1.5rem;
    }
}


/* General responsive adjustments */
@media screen and (max-width: 992px) {
  /* ... existing nav-menu styles ... */
}
@media screen and (max-width: 768px) {
  /* ... existing header and hero styles ... */
  .language-selector {
    order: 3;
    width: 100%;
    justify-content: center; /* Center language buttons on small screens */
    margin-top: 10px;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  /* ... existing hero and logo styles ... */
}

/* Make sure the header demo button is consistent with the new main contact section */
.header-demo-btn {
    background-color: #5FA8D3; /* Harmonize with other call-to-action buttons */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.header-demo-btn:hover {
    background-color: #3e8bc4;
    transform: translateY(-2px);
}

