
:root {
    --text-color: #333;
    --bg-color: #f4f4f4;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 20px;
    color: #fff;
}

header .highlight {
    color: #c66332;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}
nav{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
nav ul li {
    margin-left: 30px;
    margin-right: 30px;
    
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.5s ease;
}

nav ul li a:hover {
    color: #c66332;
}

.right-nav a {
    padding: 10px 20px;
    background: #fff;
    color: #333;
    border: 2px transparent;
    border-radius: 5px;
    text-decoration: none;
}

.right-nav a:hover {
    background-color: #c66332;
    color: #fff;
}

.section-head {
  font-size: 2.5rem;
  color: #c66332;
  padding-top:40px;
}

.contact_block .text-blk {
    line-height: 25px;
  }
  
  .contact_block .big-container {
    min-height: 75px;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .contact_block .cell-block {
    min-height: 75px;
  }
  
  .contact_block .big-container {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .contact_block .container {
    max-width: 1100px;
    justify-content: space-evenly;
  }
  
  .contact_block .section-head {
    font-size: 60px;
    line-height: 65px;
    margin-top: 60px;
    margin-bottom: 24px;
   
  }
  
  .contact_block .section-subhead {
    font-size: 14px;
    line-height: 18px;
    color: #7e7e7e;
  }
  
  .contact_block .input {
    width: 100%;
    margin-bottom: 15px;
    height: 54px;
    border-radius: 5px;
    border-width: 2px;
    border-color: #767676;
    padding-left: 16px;
    font-size: 16px;
  }
  
  .contact_block .textinput {
    width: 100%;
    height: 125px;
    margin-bottom: 27px;
    border-width: 2px;
    border-style: solid;
    border-color: #767676;
    font-size: 16px;
    padding: 16px;
  }
  
  .contact_block .button {
    height: 50px;
    min-width: 240px;
    font-size: 16px;
    color: white;
    background-color: #c66332;
    margin-bottom: 60px;
    border: none;
  }  

  .contact_block .button:hover {
    background-color: #9f3e0a;
    color: white;
  }

  .contact_block .button:active {
    background-color: #3d3c3b;
    color: white;
  }

  .social-media {
    text-align: center;
    padding: 40px 0;
  }

  .social-media h2 {
    color: #c66332;
  padding-top:40px;
  }

  .social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .social-media ul li {
    margin: 0 10px;
  }

  .social-media ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }

  .social-media ul li a:hover {
    color: #c66332;
  }
/* Sections */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

/* Footer */
footer {
    background-color:#c66332;
    color: white;
    text-align: center;
    padding: 20px 0;
    
}

