/* Base Styles */
:root {
  --primary-color: #232A69;
  --secondary-color: #6C6C6C;
  --text-color: #000000;
  --light-text: #FFFFFF;
  --light-bg: #FFFFFF;
  --border-color: #C4C4C4;
  --font-primary: 'Segoe UI', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-tertiary: 'Lato', sans-serif;
  --font-heading: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
}

.app-container {
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-tertiary);
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: #2d3685;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-text {
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: underline;
  padding: 1rem 0;
}

.btn-text:hover {
  color: #2d3685;
}

/* Header Styles */
.header {
  background-color: var(--light-bg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 77px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #2d3685;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-toggle {
    cursor: pointer;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1px solid #ddd;
  }
  .dropdown-menu a {
    color: #232a69;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .dropdown-menu a:hover {
    background-color: #f1f1f1;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-link {
    color: #232a69;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-link:hover, .nav-link.active {
    color: #3a43a5;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .cart-icon img {
    width: 28px;
    height: 28px;
  }

.cart-icon {
  display: flex;
  align-items: center;
}

.cart-icon img {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.subtitle {
  font-size: 1.625rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.buttons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Two Column Layout */
.two-columns {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.column-image, .column-content {
  flex: 1;
}

.column-content {
  text-align: left;
}

.column-content h2 {
  text-align: left;
}

.column-content .btn {
  margin-top: 1.5rem;
}

/* CTA Section */
.final-cta {
  text-align: center;
}

.cta-text {
  font-size: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.cta-image {
  max-width: 1000px;
  margin: 0 auto;
}

/* Contact CTA */
.contact-cta {
  background-color: rgba(35, 42, 105, 0.5);
  padding: 3rem 0;
  margin-top: 2rem;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-color);
}

.contact-content h2 {
  font-size: 2.125rem;
  margin-bottom: 1.5rem;
}

.contact-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 150px;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-link, .footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--light-text);
  text-decoration: underline;
}

.footer-address {
  text-decoration: none;
}

.footer-link img, .footer-address img {
  width: 16px;
  height: 16px;
}

.footer-copyright {
  text-align: center;
  font-size: 0.625rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Breadcrumb */
.breadcrumb {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 0;
}

.breadcrumb-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Contact Page Styles */
.contact-hero {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 2rem;
  align-items: center;
}

.contact-hero-content {
  flex: 1;
  max-width: 600px;
}

.contact-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-hero-image img {
  max-width: 100%;
  height: auto;
}

.trading-hours {
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(35, 42, 105, 0.05);
  border-radius: 8px;
}

.trading-hours h3 {
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-info {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
}

.branch-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.branch-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.branch-card h3 {
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
}

.branch-image {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 1rem;
}

.contact-form p {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .hero {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .two-columns {
    flex-direction: column;
  }
  
  .column-image {
    order: 1;
  }
  
  .column-content {
    order: 2;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero,
  .contact-container {
    flex-direction: column;
  }
  
  .contact-hero-content,
  .contact-hero-image {
    max-width: 100%;
  }
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-right {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
}
