:root {
  --deep-ocean: #073b4c;
  --light-mist: #e6ebee;
  --dark-navy: #052633;
  --teal-accent: #2a9d8f;
  --soft-teal: #e8f4f3;
  --warm-orange: #f4a261;
  --orange-light: #fdf2e9;
  --coral-red: #e76f51;
  --coral-soft: #fdeae6;
  --grey-border: #c7d2d7;
  --almost-white: #f8fafb;
  --info-blue: #219ebc;
  --danger-red: #c1121f;
  --success-green: #38b000;
}

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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.52;
  color: var(--dark-navy);
  background: var(--almost-white);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 19px;
}

h1 { 
  font-size: 3.4rem; 
}
h2 { 
  font-size: 2.3rem; 
}
h3 { 
  font-size: 1.7rem; 
}

a {
  text-decoration: none;
  color: var(--deep-ocean);
  transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Top contact strip styles */
.top-contact-strip {
  background: var(--deep-ocean);
  padding: 14px 0;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.main-wrapper {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 23px;
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-section {
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white !important;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.contact-info-blocks {
  display: flex;
  align-items: center;
  gap: 31px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.icon-holder {
  width: 38px;
  height: 38px;
  background: var(--coral-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(231, 111, 81, 0.24);
}

.icon-holder i {
  color: white;
  font-size: 19px;
}

.info-text span {
  color: rgba(255, 255, 255, 0.87);
  font-size: 14px;
  font-weight: 400;
}

.cta-button {
  background: var(--coral-red);
  color: white !important;
  padding: 12px 26px;
  border-radius: 43px;
  font-weight: 500;
  font-size: 13px;
  box-shadow: 0 4px 11px rgba(231, 111, 81, 0.31);
  border: none;
}

.cta-button:hover {
  background: #d85d42;
  transform: translateY(-1px);
  box-shadow: 0 6px 17px rgba(231, 111, 81, 0.38);
}

/* Navigation styles */
.main-navbar {
  background: var(--info-blue) !important;
  position: relative;
  z-index: 998;
  padding: 0;
  box-shadow: 0 3px 9px rgba(0,0,0,0.13);
}

.nav-container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 23px;
  min-height: 64px;
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 15px;
  padding: 17px 0;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 7px;
}

.search-area {
  margin-left: auto;
  margin-right: 31px;
}

.search-box {
  height: 41px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.search-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
}

.search-field {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.89);
  padding: 0 17px;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
}

.search-field::placeholder {
  color: rgba(255, 255, 255, 0.57);
}

.search-btn {
  width: 41px;
  height: 41px;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn i {
  font-size: 17px;
}

.nav-links {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  gap: 3px;
}

.nav-item {
  margin: 0;
}

.nav-anchor {
  display: block;
  padding: 18px 24px;
  color: white !important;
  font-size: 14px;
  font-weight: 430;
  transition: all 0.29s ease-in-out;
  border-radius: 4px;
}

.nav-anchor:hover {
  color: var(--dark-navy) !important;
  background: rgba(255,255,255,0.14);
}

.nav-item.active-page .nav-anchor {
  color: var(--warm-orange) !important;
  background: rgba(244, 162, 97, 0.12);
}

/* Hero section */
.hero-wrapper {
  position: relative;
  margin-top: 0;
}

.hero-background {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 86vh;
  position: relative;
  background-attachment: fixed;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(7, 59, 76, 0.73) 0%, rgba(33, 158, 188, 0.41) 100%);
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 23px;
  height: 86vh;
  display: flex;
  align-items: center;
}

.content-area {
  width: 100%;
}

.hero-text-block {
  max-width: 670px;
  padding-right: 34px;
}

.hero-text-block h1 {
  color: white;
  font-size: 3.9rem;
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 3px 7px rgba(0,0,0,0.27);
  font-weight: 700;
}

.main-description {
  color: rgba(255, 255, 255, 0.93);
  font-size: 16px;
  margin-bottom: 37px;
  line-height: 1.61;
  font-weight: 400;
}

.inquiry-form {
  margin-top: 31px;
}

.form-group {
  display: flex;
  gap: 9px;
  align-items: stretch;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 280px;
  height: 52px;
  background: rgba(255,255,255,0.97);
  border: 2px solid rgba(255,255,255,0.31);
  padding: 0 19px;
  font-size: 14px;
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  color: var(--dark-navy);
}

.email-input:focus {
  outline: none;
  border-color: var(--coral-red);
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.21);
  background: white;
}

.email-input::placeholder {
  color: rgba(5, 38, 51, 0.64);
}

.form-submit {
  background: var(--coral-red);
  border: none;
  color: white;
  padding: 0 29px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.33s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
}

.form-submit:hover {
  background: #d85d42;
  transform: translateY(-2px);
  box-shadow: 0 7px 19px rgba(231, 111, 81, 0.34);
}

/* Footer section */
.bottom-section {
  padding: 71px 0;
  background: #111111;
  margin-top: 94px;
  border-top: 3px solid var(--deep-ocean);
}

.footer-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 23px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 2.3fr;
  gap: 58px;
  margin-bottom: 71px;
}

.about-block {
  padding-right: 31px;
}

.block-title {
  color: white;
  font-size: 18px;
  margin-bottom: 17px;
  font-weight: 700;
}

.about-block p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.67;
  font-size: 15px;
}

.links-section {
  width: 100%;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
}

.column-block {
  margin: 0;
}

.column-header {
  color: white;
  font-size: 16px;
  margin-bottom: 19px;
  font-weight: 600;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  margin-bottom: 9px;
}

.link-list a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  transition: color 0.26s ease;
}

.link-list a:hover {
  color: white;
}

.copyright-section {
  margin-top: 41px;
  padding-top: 41px;
}

.bottom-line {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 27px;
  text-align: center;
}

.bottom-line p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin: 0;
}

/* Responsive breakpoints at unusual sizes */
@media (max-width: 890px) {
  .hero-text-block h1 {
    font-size: 2.7rem;
  }
  
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 43px;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-layout {
    flex-direction: column;
    gap: 17px;
  }
  
  .contact-info-blocks {
    gap: 19px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
  }
  
  .search-area {
    margin: 13px 0;
    order: -1;
  }
  
  .hero-text-block {
    padding-right: 0;
  }
  
  .hero-text-block h1 {
    font-size: 2.1rem;
  }
  
  .form-group {
    flex-direction: column;
    gap: 13px;
  }
  
  .email-input {
    min-width: auto;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.profile_area {
  padding-bottom: 187px;
  padding-top: 134px;
  background: linear-gradient(127deg, var(--almost-white) 0%, var(--light-mist) 100%);
  position: relative;
}

.profile_area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.content_wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 27px;
}

.profile_layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 67px;
  align-items: center;
}

.image_section {
  position: relative;
}

.profile_visuals {
  position: relative;
  width: 100%;
}

.main_photo {
  position: relative;
  z-index: 2;
}

.main_photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 59, 76, 0.18);
  border: 3px solid white;
}

.secondary_image {
  position: absolute;
  right: -41px;
  bottom: -73px;
  z-index: 1;
  width: 47%;
}

.secondary_image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 9px 23px rgba(0, 0, 0, 0.12);
  border: 2px solid white;
}

.text_section {
  padding-left: 18px;
}

.profile_details {
  max-width: 540px;
}

.intro_header {
  margin-bottom: 31px;
}

.intro_header span {
  color: var(--coral-red);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.intro_header h3 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.15;
  margin-bottom: 0;
}

.profile_details p {
  font-size: 15px;
  line-height: 1.64;
  margin-bottom: 23px;
  color: rgba(5, 38, 51, 0.82);
}

.profile_details p:last-of-type {
  margin-bottom: 39px;
}

.profile_button {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--coral-red);
  text-align: center;
  color: var(--coral-red) !important;
  transition: all 0.41s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 47px;
  padding: 17px 32px;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
}

.profile_button:hover {
  background: var(--coral-red);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.32);
}

@media (max-width: 1180px) {
  .profile_layout {
    gap: 47px;
  }
  
  .secondary_image {
    right: -28px;
    bottom: -54px;
  }
}

@media (max-width: 890px) {
  .profile_area {
    padding-top: 87px;
    padding-bottom: 97px;
  }
  
  .profile_layout {
    grid-template-columns: 1fr;
    gap: 53px;
  }
  
  .image_section {
    order: 2;
  }
  
  .text_section {
    order: 1;
    padding-left: 0;
  }
  
  .intro_header h3 {
    font-size: 2.2rem;
  }
  
  .profile_visuals {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .profile_area {
    padding-top: 63px;
    padding-bottom: 73px;
  }
  
  .content_wrapper {
    padding: 0 19px;
  }
  
  .intro_header h3 {
    font-size: 1.9rem;
  }
  
  .secondary_image {
    right: -19px;
    bottom: -34px;
    width: 42%;
  }
  
  .profile_button {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .profile_area::before {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .secondary_image {
    display: none;
  }
  
  .profile_details p {
    font-size: 14px;
  }
}

/* Services Section Styles */
.services_block {
    padding: 147px 0;
    background: white;
    position: relative;
}

.services_block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--grey-border) 50%, transparent 100%);
}

.service_container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 29px;
}

.section_intro {
    text-align: center;
    margin-bottom: 89px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.section_intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.21;
}

.section_intro p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 1.58;
    color: rgba(5, 38, 51, 0.78);
    margin-bottom: 0;
    text-align: center;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px;
}

.service_column {
    position: relative;
}

.service_card {
    box-shadow: 0px 11px 28px 0px rgba(7, 59, 76, 0.09);
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 31px;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(199, 210, 215, 0.24);
    background: white;
}

.service_card:hover {
    transform: translateY(-7px);
    box-shadow: 0px 19px 42px 0px rgba(7, 59, 76, 0.16);
    border-color: rgba(231, 111, 81, 0.18);
}

.service_image {
    overflow: hidden;
    position: relative;
    height: 240px;
}

.service_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.43s ease-out;
}

.service_card:hover .service_photo {
    transform: scale(1.06);
}

.service_content {
    padding: 33px 29px;
    background: white;
}

.service_content h4 {
    font-size: 19px;
    color: var(--dark-navy);
    margin-bottom: 17px;
    transition: all 0.32s ease;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.31;
}

.service_content p {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.64;
    color: rgba(5, 38, 51, 0.71);
    font-family: "Lato", sans-serif;
}

.service_link {
    font-size: 13px;
    font-weight: 600;
    color: var(--coral-red);
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    transition: all 0.34s ease;
    letter-spacing: 0.8px;
    display: inline-block;
}

.service_link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-red);
    transition: all 0.29s ease;
}

.service_link:hover {
    color: var(--deep-ocean);
    text-decoration: none;
}

.service_link:hover::after {
    width: 100%;
    background: var(--deep-ocean);
}

@media (max-width: 1150px) {
    .services_grid {
        gap: 28px;
    }
    
    .service_content {
        padding: 27px 23px;
    }
}

@media (max-width: 890px) {
    .services_block {
        padding: 97px 0;
    }
    
    .services_grid {
        grid-template-columns: 1fr;
        gap: 43px;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .section_intro {
        margin-bottom: 67px;
    }
    
    .section_intro h2 {
        font-size: 2.3rem;
    }
    
    .service_image {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .services_block {
        padding: 73px 0;
    }
    
    .service_container {
        padding: 0 21px;
    }
    
    .section_intro h2 {
        font-size: 2rem;
    }
    
    .section_intro p {
        font-size: 15px;
    }
    
    .service_content {
        padding: 24px 19px;
    }
    
    .service_content h4 {
        font-size: 17px;
    }
    
    .service_content p {
        font-size: 13px;
    }
    
    .service_image {
        height: 180px;
    }
}

/* Testimonials Section Styles */
.client_feedback_area {
    padding: 162px 0;
    background: linear-gradient(119deg, var(--light-mist) 0%, white 100%);
    position: relative;
}

.client_feedback_area::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials_wrapper {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 31px;
}

.feedback_header {
    text-align: center;
    margin-bottom: 94px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.feedback_header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 19px;
    line-height: 1.24;
}

.feedback_header p {
    font-size: 15px;
    font-family: "Lato", sans-serif;
    line-height: 1.62;
    color: rgba(5, 38, 51, 0.74);
    margin-bottom: 0;
}

.testimonials_layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 41px;
}

.feedback_item {
    position: relative;
}

.quote_content {
    background: white;
    border-radius: 11px;
    padding: 39px 27px 34px;
    box-shadow: 0 13px 32px rgba(7, 59, 76, 0.11);
    border: 1px solid rgba(199, 210, 215, 0.19);
    position: relative;
    transition: all 0.39s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quote_content:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(7, 59, 76, 0.17);
    border-color: rgba(231, 111, 81, 0.23);
}

.quote_icon {
    position: absolute;
    top: -18px;
    left: 27px;
    width: 36px;
    height: 36px;
    background: var(--coral-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(231, 111, 81, 0.28);
}

.quote_icon i {
    color: white;
    font-size: 18px;
    transform: rotate(180deg);
}

.quote_content p {
    font-size: 14px;
    line-height: 1.67;
    color: rgba(5, 38, 51, 0.83);
    font-family: "Lato", sans-serif;
    margin-bottom: 26px;
    font-style: italic;
    margin-top: 12px;
}

.client_info {
    border-top: 1px solid rgba(199, 210, 215, 0.31);
    padding-top: 21px;
}

.rating_stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.rating_stars i {
    font-size: 16px;
    color: #ffc107;
}

.rating_stars i.material-icons:last-child {
    color: rgba(255, 193, 7, 0.31);
}

.client_info h4 {
    font-size: 16px;
    color: var(--dark-navy);
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.25;
}

.client_info span {
    font-size: 12px;
    color: rgba(5, 38, 51, 0.58);
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Responsive design */
@media (max-width: 1140px) {
    .testimonials_layout {
        gap: 32px;
    }
    
    .quote_content {
        padding: 34px 23px 29px;
    }
}

@media (max-width: 890px) {
    .client_feedback_area {
        padding: 107px 0;
    }
    
    .testimonials_layout {
        grid-template-columns: 1fr;
        gap: 47px;
        max-width: 520px;
        margin: 0 auto;
    }
    
    .feedback_header {
        margin-bottom: 71px;
    }
    
    .feedback_header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .client_feedback_area {
        padding: 83px 0;
    }
    
    .testimonials_wrapper {
        padding: 0 23px;
    }
    
    .feedback_header h2 {
        font-size: 1.9rem;
    }
    
    .quote_content {
        padding: 31px 19px 26px;
    }
    
    .quote_content p {
        font-size: 13px;
    }
    
    .client_info h4 {
        font-size: 15px;
    }
    
    .quote_icon {
        left: 19px;
        width: 32px;
        height: 32px;
    }
    
    .quote_icon i {
        font-size: 16px;
    }
}

/* Call-to-Action Section Styles */
.consultation_cta_block {
    padding: 117px 0;
    background: var(--deep-ocean);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.consultation_cta_block::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 111, 81, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.consultation_cta_block::after {
    content: "";
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.cta_container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 33px;
    position: relative;
    z-index: 2;
}

.cta_content_area {
    display: flex;
    justify-content: center;
}

.cta_inner {
    max-width: 780px;
    width: 100%;
}

.action_content {
    text-align: center;
    color: white;
}

.cta_headline {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 27px;
    color: white;
    font-family: "Playfair Display", serif;
    line-height: 1.18;
}

.cta_description {
    font-size: 17px;
    margin-bottom: 43px;
    color: rgba(255, 255, 255, 0.89);
    line-height: 1.59;
    font-family: "Lato", sans-serif;
}

.cta_buttons {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.primary_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--coral-red);
    color: white !important;
    font-weight: 600;
    padding: 16px 34px;
    border-radius: 41px;
    transition: all 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    border: 2px solid var(--coral-red);
}

.primary_cta_btn:hover {
    background: transparent;
    color: white !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 111, 81, 0.31);
}

.primary_cta_btn i {
    font-size: 19px;
}

.secondary_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid rgba(255, 255, 255, 0.73);
    border-radius: 41px;
    color: white !important;
    font-weight: 600;
    padding: 16px 34px;
    background: transparent;
    transition: all 0.33s ease;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 15px;
}

.secondary_cta_btn:hover {
    background: white;
    color: var(--deep-ocean) !important;
    border-color: white;
    transform: translateY(-2px);
}

.secondary_cta_btn i {
    font-size: 19px;
}

.consultation_info {
    display: flex;
    justify-content: center;
    gap: 47px;
    flex-wrap: wrap;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-family: "Lato", sans-serif;
}

.info_item i {
    font-size: 17px;
    color: var(--coral-red);
}

/* Responsive breakpoints */
@media (max-width: 1040px) {
    .consultation_info {
        gap: 34px;
    }
}

@media (max-width: 890px) {
    .consultation_cta_block {
        padding: 89px 0;
    }
    
    .cta_headline {
        font-size: 2.4rem;
    }
    
    .cta_buttons {
        flex-direction: column;
        align-items: center;
        gap: 17px;
    }
    
    .consultation_info {
        flex-direction: column;
        gap: 19px;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .consultation_cta_block {
        padding: 67px 0;
    }
    
    .cta_container {
        padding: 0 21px;
    }
    
    .cta_headline {
        font-size: 2rem;
        margin-bottom: 23px;
    }
    
    .cta_description {
        font-size: 15px;
        margin-bottom: 37px;
    }
    
    .primary_cta_btn,
    .secondary_cta_btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta_buttons {
        margin-bottom: 43px;
    }
    
    .consultation_info {
        gap: 16px;
    }
    
    .info_item {
        font-size: 13px;
    }
}


.legal_text_area {
    padding: 127px 0;
    background: var(--almost-white);
    min-height: 70vh;
}

.text_container {
    max-width: 890px;
    margin: 0 auto;
    padding: 0 29px;
}

.legal_header {
    margin-bottom: 47px;
    text-align: center;
    border-bottom: 2px solid var(--coral-red);
    padding-bottom: 23px;
}

.legal_header h1 {
    font-size: 2.8rem;
    line-height: 1.19;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 700;
    color: var(--dark-navy);
    font-family: "Playfair Display", serif;
}

.section_title {
    font-size: 1.6rem;
    margin-bottom: 19px;
    margin-top: 41px;
    color: var(--deep-ocean);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.31;
}

.text_content {
    margin-top: 34px;
}

.text_content p {
    margin-bottom: 18px;
    color: rgba(5, 38, 51, 0.79);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.67;
    font-family: "Lato", sans-serif;
}

.text_content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 890px) {
    .legal_text_area {
        padding: 83px 0;
    }
    
    .text_container {
        padding: 0 23px;
    }
    
    .legal_header h1 {
        font-size: 2.3rem;
    }
    
    .section_title {
        font-size: 1.4rem;
        margin-top: 34px;
    }
}

@media (max-width: 640px) {
    .legal_text_area {
        padding: 67px 0;
    }
    
    .text_container {
        padding: 0 19px;
    }
    
    .legal_header {
        margin-bottom: 37px;
        padding-bottom: 19px;
    }
    
    .legal_header h1 {
        font-size: 2rem;
    }
    
    .section_title {
        font-size: 1.2rem;
        margin-top: 28px;
        margin-bottom: 16px;
    }
    
    .text_content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}


.contact_page_area {
  padding: 153px 0 127px;
  background: linear-gradient(134deg, var(--almost-white) 0%, var(--light-mist) 100%);
  min-height: 80vh;
}

.contact_main_container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 31px;
}

.contact_layout {
  width: 100%;
}

.contact_intro {
  text-align: center;
  margin-bottom: 73px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact_heading {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 21px;
  color: var(--dark-navy);
  font-family: "Playfair Display", serif;
  line-height: 1.22;
}

.contact_subtext {
  font-size: 16px;
  color: rgba(5, 38, 51, 0.76);
  line-height: 1.61;
  font-family: "Lato", sans-serif;
}

.contact_content_grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 67px;
  align-items: start;
}

.contact_form_section {
  background: white;
  padding: 43px 39px;
  border-radius: 12px;
  box-shadow: 0 17px 41px rgba(7, 59, 76, 0.09);
  border: 1px solid rgba(199, 210, 215, 0.23);
}

.inquiry_form {
  width: 100%;
}

.form_grid {
  display: grid;
  gap: 27px;
}

.form_row_full {
  grid-column: 1 / -1;
}

.form_row_half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.input_group {
  width: 100%;
}

.form_input {
  width: 100%;
  border: 2px solid rgba(199, 210, 215, 0.41);
  border-radius: 7px;
  height: 47px;
  padding: 0 17px;
  font-size: 14px;
  background: white;
  font-family: "Lato", sans-serif;
  color: var(--dark-navy);
  transition: all 0.31s ease;
}

.textarea_field {
  height: 120px !important;
  padding: 17px;
  resize: vertical;
  min-height: 90px;
}

.form_input:focus {
  outline: none;
  border-color: var(--coral-red);
  box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.12);
}

.form_input::placeholder {
  color: rgba(5, 38, 51, 0.54);
}

.submit_section {
  margin-top: 34px;
}

.contact_submit_btn {
  background: var(--coral-red);
  color: white;
  border: 2px solid var(--coral-red);
  padding: 15px 31px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 43px;
  cursor: pointer;
  transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: "Lato", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact_submit_btn:hover {
  background: transparent;
  color: var(--coral-red);
  transform: translateY(-2px);
  box-shadow: 0 9px 23px rgba(231, 111, 81, 0.28);
}

.contact_submit_btn i {
  font-size: 17px;
}

.contact_info_section {
  padding: 23px 0;
}

.contact_item {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  margin-bottom: 37px;
  padding: 27px 21px;
  background: white;
  border-radius: 9px;
  box-shadow: 0 7px 19px rgba(7, 59, 76, 0.07);
  border: 1px solid rgba(199, 210, 215, 0.19);
  transition: all 0.29s ease;
}

.contact_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(7, 59, 76, 0.13);
}

.contact_icon {
  width: 43px;
  height: 43px;
  background: var(--coral-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 11px rgba(231, 111, 81, 0.24);
}

.contact_icon i {
  color: white;
  font-size: 19px;
}

.contact_text h3 {
  font-size: 16px;
  margin-bottom: 7px;
  color: var(--dark-navy);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.contact_text p {
  color: rgba(5, 38, 51, 0.73);
  font-size: 14px;
  line-height: 1.57;
  margin: 0;
  font-family: "Lato", sans-serif;
}

.contact_text a {
  color: var(--deep-ocean);
  transition: color 0.26s ease;
}

.contact_text a:hover {
  color: var(--coral-red);
}

.consultation_note {
  background: linear-gradient(127deg, var(--light-mist) 0%, white 100%);
  padding: 29px 21px;
  border-radius: 9px;
  border: 1px solid rgba(42, 157, 143, 0.16);
  margin-top: 23px;
}

.note_content h4 {
  font-size: 15px;
  color: var(--deep-ocean);
  margin-bottom: 11px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.note_content p {
  font-size: 13px;
  color: rgba(5, 38, 51, 0.78);
  line-height: 1.62;
  margin: 0;
  font-family: "Lato", sans-serif;
}

@media (max-width: 1120px) {
  .contact_content_grid {
    gap: 47px;
  }
  
  .contact_form_section {
    padding: 37px 29px;
  }
}

@media (max-width: 890px) {
  .contact_page_area {
    padding: 97px 0 83px;
  }
  
  .contact_content_grid {
    grid-template-columns: 1fr;
    gap: 53px;
  }
  
  .contact_heading {
    font-size: 2.3rem;
  }
  
  .form_row_half {
    grid-template-columns: 1fr;
    gap: 21px;
  }
}

@media (max-width: 640px) {
  .contact_page_area {
    padding: 73px 0 67px;
  }
  
  .contact_main_container {
    padding: 0 21px;
  }
  
  .contact_heading {
    font-size: 2rem;
  }
  
  .contact_form_section {
    padding: 31px 23px;
  }
  
  .form_grid {
    gap: 21px;
  }
  
  .contact_item {
    padding: 21px 17px;
    margin-bottom: 27px;
  }
  
  .contact_submit_btn {
    width: 100%;
    justify-content: center;
  }
}

.thankyou_area {
            padding: 134px 0;
            background: linear-gradient(129deg, var(--almost-white) 0%, var(--light-mist) 100%);
            min-height: 70vh;
            display: flex;
            align-items: center;
        }
        
        .thankyou_container {
            max-width: 720px;
            margin: 0 auto;
            padding: 0 27px;
            text-align: center;
        }
        
        .thankyou_content {
            background: white;
            padding: 53px 41px;
            border-radius: 11px;
            box-shadow: 0 19px 43px rgba(7, 59, 76, 0.12);
            border: 1px solid rgba(199, 210, 215, 0.21);
        }
        
        .success_icon {
            width: 67px;
            height: 67px;
            background: var(--success-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 29px;
            box-shadow: 0 7px 18px rgba(56, 176, 0, 0.28);
        }
        
        .error_icon {
            background: var(--danger-red);
            box-shadow: 0 7px 18px rgba(193, 18, 31, 0.28);
        }
        
        .success_icon i, .error_icon i {
            color: white;
            font-size: 32px;
        }
        
        .thankyou_title {
            font-size: 2.3rem;
            color: var(--dark-navy);
            margin-bottom: 19px;
            font-family: "Playfair Display", serif;
            font-weight: 700;
        }
        
        .thankyou_message {
            font-size: 16px;
            color: rgba(5, 38, 51, 0.81);
            line-height: 1.63;
            margin-bottom: 37px;
            font-family: "Lato", sans-serif;
        }
        
        .error_list {
            background: rgba(193, 18, 31, 0.08);
            border: 1px solid rgba(193, 18, 31, 0.21);
            border-radius: 6px;
            padding: 17px 23px;
            margin-bottom: 29px;
            text-align: left;
        }
        
        .error_list ul {
            margin: 0;
            padding-left: 19px;
            color: var(--danger-red);
            font-size: 14px;
        }
        
        .action_buttons {
            display: flex;
            gap: 17px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn_primary {
            background: var(--coral-red);
            color: white !important;
            padding: 14px 28px;
            border-radius: 41px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            font-family: "Lato", sans-serif;
            transition: all 0.33s ease;
            border: 2px solid var(--coral-red);
        }
        
        .btn_secondary {
            background: transparent;
            color: var(--deep-ocean) !important;
            padding: 14px 28px;
            border-radius: 41px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            font-family: "Lato", sans-serif;
            transition: all 0.33s ease;
            border: 2px solid var(--deep-ocean);
        }
        
        .btn_primary:hover {
            background: transparent;
            color: var(--coral-red) !important;
        }
        
        .btn_secondary:hover {
            background: var(--deep-ocean);
            color: white !important;
        }
        
        @media (max-width: 640px) {
            .thankyou_area {
                padding: 87px 0;
            }
            
            .thankyou_container {
                padding: 0 21px;
            }
            
            .thankyou_content {
                padding: 37px 27px;
            }
            
            .thankyou_title {
                font-size: 1.9rem;
            }
            
            .action_buttons {
                flex-direction: column;
                align-items: center;
            }
        }