/* Base Styles - Fonts and Common Elements */

/* Vodafone Font Family */
@font-face {
  font-family: "Vodafone";
  src: url("../fonts/vodafone-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Vodafone";
  src: url("../fonts/vodafone-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Vodafone";
  src: url("../fonts/vodafone-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Vodafone";
  src: url("../fonts/vodafone-extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

/* Icon Font */
@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot?');
  src: url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
       url('../fonts/icomoon.ttf?') format('truetype'),
       url('../fonts/icomoon.woff?') format('woff'),
       url('../fonts/icomoon.svg?#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* Base Reset */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Common Typography */
body {
  font-family: 'Vodafone', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

/* Common Button Styles */
.modern-btn {
  display: inline-block;
  font-size: 20px;
  padding: 12px 24px;
  background: #009900;
  color: #333333 !important;
  text-decoration: none;
  border-radius: 8px;
  margin: 10px 5px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-weight: 400;
  font-family: 'Vodafone';
  width: 100%;
}

.modern-btn:hover {
  background: #007700;
  text-decoration: none;
}

/* Back Button */
.back-button {
  position: absolute;
  top: 20px;
  left: 5%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.back-button:hover {
  background: #f8f9fa;
  border-color: #0044c1;
  transform: scale(1.1);
}

.back-button::after {
  font-family: 'icomoon' !important;
  content: "\e903";
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Common Logo Styles */
.logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Common Page Title */
.page-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0;
  font-family: 'Vodafone', serif;
}

/* Common Footer Links */
.footer-faq {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.footer-faq a {
  margin: 0 10px;
  font-size: 14px;
  text-decoration: none;
  color: #222;
  transition: color 0.2s;
}

.footer-faq a:hover {
  text-decoration: underline;
  color: #0044c1;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Responsive Images */
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Common Container */
.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .content-container {
    padding: 15px;
  }
  
  .page-title {
    font-size: 20px;
  }
  
  .back-button {
    left: 20px;
  }
} 