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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #000000;
  background-color: #FFFFFF;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
}

.header {
  background-color: #faeaeb;
  color: #FFFFFF;
  padding: 1rem 2rem;
  z-index: 1000;
}
@media (max-width: 768px) {
  .header {
    padding: 0.5rem 1rem;
  }
}
.header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: #081849;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}
@media (max-width: 768px) {
  .header .logo {
    width: 100%;
    justify-content: center;
  }
}
.header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header .logo a:hover {
  opacity: 0.8;
}
.header .logo img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .header .logo img {
    height: 45px;
  }
}
.header .logo h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #FFFFFF;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .header .logo h1 {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .header nav {
    width: 100%;
  }
}
.header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }
}
.header nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: block;
  white-space: nowrap;
}
.header nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.header nav ul li a.active {
  background-color: #893172;
}

.main-content {
  flex: 1;
  max-width: 100%;
  margin: 0;
  width: 100%;
  padding: 0;
}

.footer {
  background-color: #081849;
  color: #FFFFFF;
  padding: 3rem 2rem;
  margin-top: auto;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .footer p {
    font-size: 0.85rem;
  }
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .footer-links {
    gap: 1rem;
  }
}
.footer .footer-links a {
  color: #ECDFD2;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
.footer .footer-links a:hover {
  color: #FFFFFF;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #213885;
  color: #FFFFFF;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  min-width: 120px;
}
@media (max-width: 768px) {
  .btn {
    padding: 1rem;
    font-size: 0.95rem;
    min-width: 100px;
  }
}
.btn:hover {
  background-color: #081849;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn-secondary {
  background-color: #893172;
}
.btn.btn-secondary:hover {
  background-color: #5F3475;
}

.section {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }
}
.section.section-alt {
  background-color: #faeaeb;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.section.section-dark {
  background-color: #121212;
  color: #FFFFFF;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.section.section-dark .section-title {
  color: #FFFFFF;
}
.section.section-dark .section-subtitle {
  color: #f4f4f6;
}
.section .section-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .section .section-title {
    font-size: 1.75rem;
  }
}
.section .section-subtitle {
  font-size: 1.2rem;
  color: #893172;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section .section-subtitle {
    font-size: 1.1rem;
  }
}

.box-container {
  background-color: #6154a3;
  color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 800px;
}
@media (max-width: 768px) {
  .box-container {
    padding: 1rem;
    margin: 1rem auto;
  }
}
.box-container h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.box-container p {
  line-height: 1.8;
}

.ship-section {
  background-color: #FFFFFF;
  padding: 1rem 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.ship-section img {
  width: auto;
  max-width: 100%;
  height: 204px;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .ship-section img {
    height: 153px;
  }
}
@media (max-width: 480px) {
  .ship-section img {
    height: 119px;
  }
}

.services-section {
  background-color: #faeaeb;
  padding: 3rem 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
@media (max-width: 768px) {
  .services-section {
    padding: 2rem 0;
    padding-left: calc(50vw - 50% + 1rem);
    padding-right: calc(50vw - 50% + 1rem);
  }
}
.services-section .services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .services-section .services-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
}
.services-section .service-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-section .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.services-section .service-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #213885;
  margin-bottom: 1rem;
  text-align: center;
}
.services-section .service-card ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin: 0;
}
.services-section .service-card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #000000;
}
.services-section .service-card ul li:last-child {
  margin-bottom: 0;
}
.services-section .service-card p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #000000;
}
.services-section .service-card p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .services-section .service-card {
    padding: 1rem;
  }
  .services-section .service-card h3 {
    font-size: 1.5rem;
  }
  .services-section .service-card ul {
    padding-left: 1rem;
  }
}

.hero-ship-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .hero-ship-container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
  }
}
.hero-ship-container .hero-content {
  flex: 1.2;
  text-align: center;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 0.5rem;
}
.hero-ship-container .hero-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .hero-ship-container .hero-content {
    order: 2;
    padding: 1rem;
    margin: 0;
  }
}
.hero-ship-container .ship-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 0;
  min-width: 300px;
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  .hero-ship-container .ship-image-wrapper {
    order: 1;
    width: 100%;
    min-width: unset;
    margin: 0;
  }
}
.hero-ship-container .ship-image-wrapper img {
  width: auto;
  max-width: 100%;
  height: 300px;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hero-ship-container .ship-image-wrapper img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .hero-ship-container .ship-image-wrapper img {
    height: 150px;
  }
}

.bottom-graphic-section {
  padding: 0;
  margin: 0;
  background-color: #faeaeb;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-graphic-section img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .section .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 0.5rem 1rem;
  }
  .header .container {
    padding: 0.5rem 1rem;
  }
  .header .logo h1 {
    font-size: 1.1rem;
  }
  .header nav ul li a {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
.about-hero {
  padding: 4rem 0;
  text-align: center;
  background-color: #faeaeb;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
@media (max-width: 768px) {
  .about-hero {
    padding: 2rem 0;
    padding-left: calc(50vw - 50% + 1rem);
    padding-right: calc(50vw - 50% + 1rem);
  }
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.intro-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.intro-card .intro-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #213885;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .intro-card .intro-title {
    font-size: 2rem;
  }
}
.intro-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}
@media (max-width: 768px) {
  .intro-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  .intro-card p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mission-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  color: #000000;
  margin: 0;
}
@media (max-width: 768px) {
  .mission-content {
    padding: 0 1rem;
  }
  .mission-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.story-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.story-card .story-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #213885;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .story-card .story-title {
    font-size: 2rem;
  }
}
.story-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 2rem;
}
.story-card p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .story-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  .story-card p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.core-values {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.core-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.core-values ul li {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-align: center;
}
.core-values ul li:last-child {
  margin-bottom: 0;
}
.core-values ul li strong {
  font-weight: 700;
  color: #ECDFD2;
}
@media (max-width: 768px) {
  .core-values {
    padding: 0 1rem;
  }
  .core-values ul li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
}

.pricing-hero {
  padding: 4rem 0 1rem 0;
  text-align: center;
  background-color: #faeaeb;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
@media (max-width: 768px) {
  .pricing-hero {
    padding: 2rem 0 1rem 0;
    padding-left: calc(50vw - 50% + 1rem);
    padding-right: calc(50vw - 50% + 1rem);
  }
}
.pricing-hero .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.ai-chat-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .ai-chat-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
}
.ai-chat-features .feature-category {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ai-chat-features .feature-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.ai-chat-features .feature-category h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #213885;
  margin-bottom: 1rem;
  text-align: center;
}
.ai-chat-features .feature-category ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin: 0;
}
.ai-chat-features .feature-category ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #000000;
}
.ai-chat-features .feature-category ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ai-chat-features .feature-category {
    padding: 1rem;
  }
  .ai-chat-features .feature-category h3 {
    font-size: 1.3rem;
  }
  .ai-chat-features .feature-category ul {
    padding-left: 1rem;
  }
}

.seo-product {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .seo-product {
    padding: 0 1rem;
  }
}
.seo-product .seo-card {
  background-color: #faeaeb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.seo-product .seo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.seo-product .seo-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #213885;
  margin-bottom: 1rem;
  text-align: center;
}
.seo-product .seo-card ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin: 0 0 1rem 0;
}
.seo-product .seo-card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #000000;
}
.seo-product .seo-card ul li:last-child {
  margin-bottom: 0;
}
.seo-product .seo-card .seo-note {
  font-size: 0.9rem;
  font-style: italic;
  color: #000000;
  text-align: center;
  margin: 1rem 0 0 0;
}
@media (max-width: 768px) {
  .seo-product .seo-card {
    padding: 1rem;
  }
  .seo-product .seo-card h3 {
    font-size: 1.5rem;
  }
  .seo-product .seo-card ul {
    padding-left: 1rem;
  }
}

.web-hosting-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .web-hosting-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
}
.web-hosting-features .hosting-tier {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.web-hosting-features .hosting-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.web-hosting-features .hosting-tier h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #213885;
  margin-bottom: 1rem;
  text-align: center;
}
.web-hosting-features .hosting-tier ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin: 0 0 1rem 0;
}
.web-hosting-features .hosting-tier ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #000000;
}
.web-hosting-features .hosting-tier ul li:last-child {
  margin-bottom: 0;
}
.web-hosting-features .hosting-tier .hosting-note {
  font-size: 0.9rem;
  font-style: italic;
  color: #000000;
  text-align: center;
  margin: 1rem 0 0 0;
}
@media (max-width: 768px) {
  .web-hosting-features .hosting-tier {
    padding: 1rem;
  }
  .web-hosting-features .hosting-tier h3 {
    font-size: 1.5rem;
  }
  .web-hosting-features .hosting-tier ul {
    padding-left: 1rem;
  }
}

.contact-hero {
  padding: 4rem 0;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

/*# sourceMappingURL=style.css.map */
