:root {
  --primary: #0033a0;
  --secondary: #ff6b00;
  --accent: #f4c300;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #28a745;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --medium-gray: #adb5bd;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

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

/* Header Styles */

header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--primary);
  font-size: 28px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
}

.logo-text span {
  color: var(--secondary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.cta-button {
  background-color: var(--secondary);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e05e00;
}

/* Breadcrumb */

.breadcrumb {
  background-color: var(--light);
  padding: 15px 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--secondary);
  font-weight: 500;
}

/* Hero Section */

.hero {
  background: linear-gradient(135deg, rgba(0, 51, 160, 0.9) 0%, rgba(0, 40, 120, 0.95) 100%), url('../../assets/img/main/banner-tshirtprint2u.webp');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn-primary {
  background-color: var(--secondary);
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #e05e00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Section Styling */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 20px auto 0;
}

/* Content Sections */

.content-section {
  background-color: var(--light);
}

.content-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.content-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.content-card p {
  margin-bottom: 20px;
}

.highlight-box {
  background-color: rgba(0, 51, 160, 0.05);
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 5px 5px 0;
}

/* Process Section */

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
}

.process-timeline:before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--secondary);
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

/* Applications Grid */

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.app-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.app-card:hover {
  transform: translateY(-10px);
}

.app-icon {
  height: 80px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.app-content {
  padding: 25px;
}

.app-content h4 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Pros & Cons */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.pros-box, .cons-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pros-box {
  border-top: 5px solid var(--success);
}

.cons-box {
  border-top: 5px solid #dc3545;
}

.pros-box h3, .cons-box h3 {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-list, .cons-list {
  list-style: none;
}

.pros-list li, .cons-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.pros-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 1.2rem;
}

.cons-list li:before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

/* Comparison Table */

.comparison-table {
  overflow-x: auto;
  margin-top: 50px;
}

table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

th {
  background-color: var(--primary);
  color: white;
  padding: 15px;
  text-align: left;
}

td {
  padding: 15px;
  border-bottom: 1px solid var(--light-gray);
}

tr:nth-child(even) {
  background-color: rgba(0, 51, 160, 0.03);
}

.check-mark {
  color: var(--success);
  font-weight: bold;
}

.x-mark {
  color: #dc3545;
  font-weight: bold;
}

/* Facts vs Myths */

.facts-myths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.facts-box, .myths-box {
  padding: 30px;
  border-radius: 10px;
}

.facts-box {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.myths-box {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.fact-item, .myth-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.fact-item:last-child, .myth-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Right for You */

.assessment-box {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.assessment-list {
  list-style: none;
  margin: 30px 0;
}

.assessment-list li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.assessment-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* FAQ */

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question:hover {
  background-color: rgba(0, 51, 160, 0.03);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.open {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-toggle {
  transition: transform 0.3s;
}

.faq-toggle.open {
  transform: rotate(45deg);
}

/* CTA Section */

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #00257a 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* Footer */

footer {
  background-color: var(--dark);
  color: white;
  padding: 70px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: white;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-contact h3, .footer-services h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: white;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-services ul {
  list-style: none;
}

.footer-services ul li {
  margin-bottom: 12px;
}

.footer-services ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-services ul li a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Design */

@media (max-width: 992px) {
  .pros-cons, .facts-myths {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .process-timeline:before {
    left: 30px;
  }
}

@media (max-width: 992px) {
  .timeline-item {
    flex-direction: row !important;
  }
}

@media (max-width: 992px) {
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
}

@media (max-width: 992px) {
  .timeline-marker {
    left: 30px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .content-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

