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

html {
  font-size: 100%;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: White;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.header {
  background-color: #0f6983;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}

.logo {
  width: 15%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.burger i {
  font-size: 1.5rem;
  color: #FECF72;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: White;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: rgb(229.5, 229.5, 229.5);
}

.footer {
  background-color: #FEE4AE;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  width: 90%;
  margin: 0 auto;
  flex-direction: row;
}
.footer-top .footer-top-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}
.footer-top .footer-top-container .footer-links {
  color: #0f6983;
}
.footer-top .footer-top-container .footer-links ul {
  padding-left: 1em;
}
.footer-top .footer-top-container .footer-links ul li a {
  text-decoration: none;
  color: #0f6983;
}
.footer-top .footer-contact {
  color: #0f6983;
}
.footer-top .footer-contact p {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-top .footer-contact p i {
  padding: 0.5em;
}
.footer-top .footer-contact p a {
  text-decoration: none;
  color: #0f6983;
}

.footer-logo {
  width: 20%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.copyright-container {
  background-color: #0f6983;
  color: White;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.copyright-container .legal-links {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.copyright-container .legal-links a {
  text-decoration: none;
  color: white;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}

main {
  min-height: calc(100vh - 200px);
  padding-bottom: 2rem;
}

.hero {
  padding: 8rem 0 1rem 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FEE4AE;
  position: relative;
}

#left-container {
  width: 50%;
  padding-left: 1em;
  color: #0f6983;
}
#left-container p {
  font-size: 1.3em;
}
#left-container #subtext {
  font-size: 1em;
}
#left-container .hero-phrase {
  font-size: 2em;
  font-weight: bolder;
}

.hero-buttons {
  margin-top: 2em;
}

#right-container {
  width: 50%;
}
#right-container img {
  max-width: 100%;
  height: auto;
  padding-right: 1em;
}

.services {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio {
  padding: 4rem 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact {
  padding: 4rem 0;
}

.contact-form {
  max-width: 37.5rem;
  margin: 2rem auto;
}

.pricing-section {
  padding: 4rem 0;
  background: #0f6983;
}
.pricing-section h1 {
  color: white;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.pricing-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: White;
  color: #0f6983;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 2rem 1.5rem;
  min-width: 280px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0f6983;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  width: 100%;
}
.pricing-card .features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.pricing-card .features li .check {
  color: #0f6983;
}
.pricing-card .features li .cross {
  color: white;
}
.pricing-card .price {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #0f6983;
}
.pricing-card .price-note {
  font-size: 1rem;
  color: #0f6983;
  margin-bottom: 1.5rem;
}
.pricing-card .get-started-btn {
  background: #0f6983;
  color: white;
  border-radius: 2rem;
  padding: 0.75em 2em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}
.pricing-card .get-started-btn:hover {
  background: rgb(9.7602739726, 68.3219178082, 85.2397260274);
}
.pricing-card.monthly {
  background: #FEE4AE;
  color: #0f6983;
  border-radius: 2rem;
}
.pricing-card.ecommerce {
  background: White;
  color: #0f6983;
}

@media (max-width: 48em) {
  .header .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
  }
  .header .nav img {
    width: 100px;
  }
  .burger {
    display: flex;
    align-self: center;
    margin: 0;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
    background: #fff;
    transition: max-height 0.3s cubic-bezier(0.77, 0, 0.18, 1), padding 0.3s;
  }
  .nav-links.open {
    max-height: 20rem;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }
  .nav-links.open li a {
    color: #0f6983;
  }
  .hero {
    padding: 6rem 0 4rem 0;
  }
  .hero #left-container {
    width: 100%;
    padding: 1em;
  }
  #right-container {
    display: none;
  }
  .services,
  .portfolio,
  .contact {
    padding: 2rem 0;
  }
  .footer .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-top h1 {
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 0.5em;
  }
  .footer .footer-top .footer-top-container {
    display: flex;
    flex-direction: row;
  }
  .footer .footer-top .footer-top-container .footer-logo {
    width: 50%;
    text-align: center;
  }
  .footer .footer-top .footer-contact {
    padding-top: 1em;
  }
  .footer .copyright-container {
    display: flex;
    flex-direction: column;
  }
  .footer .copyright-container .legal-links {
    margin-top: 1em;
    justify-content: center;
  }
}
.about-hero {
  padding: 8rem 0 4rem 0;
  text-align: center;
  margin-top: 4.5rem;
  background-color: rgb(20.2397260274, 141.6780821918, 176.7602739726);
  color: white;
}
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.about-hero .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.about-content {
  padding: 4rem 0;
}
.about-content .about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-content .about-text h2 {
  color: #0f6983;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.about-content .about-text h2:first-child {
  margin-top: 0;
}
.about-content .about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.about-content .about-text ul {
  margin-left: 1.5rem;
}
.about-content .about-text ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.about-content .about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.what-we-do {
  background: White;
  padding: 0rem 0 2rem 0;
}
.what-we-do .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.what-we-do .what-we-do-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.what-we-do .what-we-do-header h3 {
  color: #0f6983;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.what-we-do .what-we-do-header h2 {
  color: #0f6983;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.what-we-do .what-we-do-header p {
  color: #0f6983;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}
.what-we-do .features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.what-we-do .feature-card {
  background: #0f6983;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s;
}
.what-we-do .feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: White;
  margin: 1.2rem 0 0.7rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.what-we-do .feature-card p {
  color: #FEE4AE;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.what-we-do .feature-card a {
  color: White;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}
.what-we-do .feature-card a:hover {
  color: rgb(229.5, 229.5, 229.5);
}
.what-we-do .feature-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.what-we-do .feature-icon {
  background: #FECF72;
  color: #0f6983;
  border-radius: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.offer-section {
  background: White;
  padding: 4rem 0 2rem 0;
}

.offer-container {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  flex-wrap: wrap;
}

.offer-image {
  flex: 1 1 350px;
  min-width: 300px;
  max-width: 420px;
  position: relative;
  aspect-ratio: 4/5;
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  margin-left: 1em;
}
.offer-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0 0 0 2.5rem;
  z-index: 1;
}
.offer-image .offer-name-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  color: #0f6983;
  border-radius: 0.7rem;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  letter-spacing: 0.03em;
  text-align: left;
  z-index: 2;
}

.offer-content {
  flex: 2 1 500px;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-content h3 {
  color: #0f6983;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.offer-content h2 {
  color: #0f6983;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.offer-content p {
  color: #0f6983;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 700px;
}

.offer-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}

.offer-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #0f6983;
}
.offer-feature i {
  color: #0f6983;
  font-size: 1.5rem;
  margin-top: 0.2em;
  flex-shrink: 0;
}
.offer-feature strong {
  font-size: 1.08em;
  font-weight: 700;
  color: #0f6983;
  letter-spacing: 0.01em;
}

.offer-cta {
  display: inline-block;
  background: #FECF72;
  color: #0f6983;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9em 2.2em;
  border-radius: 2em;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: background 0.2s;
  text-align: center;
}
.offer-cta:hover {
  background: rgb(229.5, 229.5, 229.5);
}

@media (max-width: 900px) {
  .what-we-do .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .offer-container {
    flex-direction: column;
    border-radius: 1.5rem;
    margin-right: 1em;
  }
  .offer-image img {
    border-radius: 1.5rem 1.5rem 0 0;
  }
  .offer-content {
    padding: 2rem 1.2rem 1.5rem 1.2rem;
  }
  .offer-features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 48em) {
  .about-hero {
    padding: 6rem 0 3rem 0;
    margin-top: 5rem;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero .lead {
    font-size: 1.1rem;
  }
  .about-content {
    padding: 2rem 0;
  }
  .about-content .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-content .about-image {
    order: -1;
  }
}
.contact-hero {
  padding: 8rem 0 4rem 0;
  text-align: center;
  margin-top: 4.5rem;
  background-color: rgb(20.2397260274, 141.6780821918, 176.7602739726);
  color: white;
}
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-hero .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.contact-content {
  padding: 4rem 0;
}
.contact-content .contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-section h2 {
  color: #0f6983;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0f6983;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e1e1;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #0f6983;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .submit-btn {
  background-color: White;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}
.contact-form .submit-btn:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}

.contact-info-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
}
.contact-info-section h2 {
  color: #0f6983;
  margin-bottom: 2rem;
}
.contact-info-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-section .contact-item i {
  color: #0f6983;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}
.contact-info-section .contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f6983;
}
.contact-info-section .contact-item p {
  margin: 0;
}
.contact-info-section .contact-item p a {
  color: #0f6983;
  text-decoration: none;
}
.contact-info-section .contact-item p a:hover {
  color: #0f6983;
}
.contact-info-section .service-highlights {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e1e1;
}
.contact-info-section .service-highlights h3 {
  color: #0f6983;
  margin-bottom: 1rem;
}
.contact-info-section .service-highlights ul {
  list-style: none;
  padding: 0;
}
.contact-info-section .service-highlights ul li {
  margin-bottom: 0.5rem;
  color: #0f6983;
}

@media (max-width: 48em) {
  .contact-hero {
    padding: 6rem 0 3rem 0;
    margin-top: 5rem;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-hero .lead {
    font-size: 1.1rem;
  }
  .contact-content {
    padding: 2rem 0;
  }
  .contact-content .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info-section {
    order: -1;
  }
}
.privacy-hero {
  padding: 8rem 0 4rem 0;
  text-align: center;
  margin-top: 4.5rem;
  background-color: rgb(20.2397260274, 141.6780821918, 176.7602739726);
  color: white;
}
.privacy-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.privacy-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 2rem auto 4rem auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  font-size: 1.08rem;
  color: #0f6983;
}
.privacy-content h2 {
  color: #0f6983;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
}
.privacy-content h3 {
  color: #0f6983;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.privacy-content p, .privacy-content ul {
  color: #0f6983;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.privacy-content ul {
  padding-left: 1.2em;
  margin-bottom: 1.5rem;
}
.privacy-content ul li {
  margin-bottom: 0.5em;
  list-style: disc;
}
.privacy-content strong {
  color: #0f6983;
  font-weight: 700;
}
.privacy-content a {
  color: #0f6983;
  text-decoration: underline;
}
.privacy-content a:hover {
  color: rgb(9.7602739726, 68.3219178082, 85.2397260274);
}

@media (max-width: 600px) {
  .privacy-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    font-size: 1rem;
  }
}
.terms-hero {
  padding: 8rem 0 4rem 0;
  text-align: center;
  margin-top: 4.5rem;
  background-color: rgb(20.2397260274, 141.6780821918, 176.7602739726);
  color: white;
}
.terms-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.terms-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 2rem auto 4rem auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  font-size: 1.08rem;
  color: #0f6983;
}
.terms-content h2 {
  color: #0f6983;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
}
.terms-content h3 {
  color: #0f6983;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.terms-content p, .terms-content ul {
  color: #0f6983;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.terms-content ul {
  padding-left: 1.2em;
  margin-bottom: 1.5rem;
}
.terms-content ul li {
  margin-bottom: 0.5em;
  list-style: disc;
}
.terms-content strong {
  color: #0f6983;
  font-weight: 700;
}
.terms-content a {
  color: #0f6983;
  text-decoration: underline;
}
.terms-content a:hover {
  color: rgb(9.7602739726, 68.3219178082, 85.2397260274);
}

@media (max-width: 600px) {
  .terms-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    font-size: 1rem;
  }
}
.webdesign-hero {
  padding: 10rem 0 3rem 0;
  background: #0f6983;
  color: white;
  text-align: center;
  position: relative;
}
.webdesign-hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.webdesign-hero .lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0;
  color: rgb(229.5, 229.5, 229.5);
}

.webdesign-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 2rem auto 4rem auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  font-size: 1.08rem;
  color: #0f6983;
}
.webdesign-content h2 {
  color: #0f6983;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 2.2rem;
  text-align: left;
}
.webdesign-content p {
  color: #0f6983;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.webdesign-content ul {
  padding-left: 1.2em;
  margin-bottom: 1.5rem;
}
.webdesign-content ul li {
  margin-bottom: 0.5em;
  list-style: disc;
  color: #0f6983;
  font-weight: 500;
}
.webdesign-content strong {
  color: #0f6983;
  font-weight: 700;
}
.webdesign-content .cta-btn {
  display: inline-block;
  margin-top: 2rem;
  background: #0f6983;
  color: white;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
}
.webdesign-content .cta-btn:hover {
  background: rgb(9.7602739726, 68.3219178082, 85.2397260274);
  color: white;
}

@media (max-width: 600px) {
  .webdesign-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    font-size: 1rem;
  }
  .webdesign-hero h1 {
    font-size: 2rem;
  }
}
.contact-us-button {
  background-color: White;
  color: #0f6983 !important;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: bold !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-us-button:hover {
  background-color: rgb(20.2397260274, 141.6780821918, 176.7602739726);
}

@media (max-width: 48em) {
  .contact-us-button {
    display: flex;
    justify-self: center;
    background-color: #0f6983;
    color: White !important;
    align-self: center !important;
  }
}
.contact-button {
  background-color: #0f6983;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-button:hover {
  background-color: rgb(9.7602739726, 68.3219178082, 85.2397260274);
  color: white;
}

.about-button {
  background-color: transparent;
  color: #0f6983;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.about-button:hover {
  background-color: #FEE4AE;
  color: #0f6983;
  border: 2px solid #0f6983;
  border-radius: 0.25rem;
}
