/* Styles for my page */
:root {
    --cranberry: #990000;
    --gray: #333;
    --light-gray: #f9f9f9;
    --accent-bg: #fff8f8;
}
body {
  background-color: #f0f0f0;
}
header .header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;

}
header {
  #background-color: #f9f9f9;
  color: white;
  padding: 1rem;
  text-align: center;
  background-color: var(--cranberry);
  border: 2px solid var(--cranberry);
  border-radius: 8px;
  margin-bottom: 1rem;
}
header img {
    height: 50px;
}
.intro-banner {
  margin: auto;
  max-width: 800px;
  background-color: #fff3f3;
  border-left: 6px solid var(--cranberry);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro-banner h1 {
  color: var(--cranberry);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.intro-banner {
  transition: background-color 0.3s ease;
}
.intro-banner:hover {
  background-color: #ffe6e6;
}

.intro-banner p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f8f8;
  padding: 2rem;
}

.faq-container {
  background-color: #fff;
  border: 2px solid #757575;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 800px;
  margin: auto;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
}

.faq-container h2 {
  color: var(--cranberry);
  text-align: center;
  margin-bottom: 1rem;
}

.accordion {
  background-color: #fce4e4; /* light red */
  color: #000;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  text-align: left;
  outline: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.accordion:hover {
  background-color: #ef9a9a;
}

.panel {
  padding: 0 1rem;
  background-color: #fafafa; /* grey-white */
  display: none;
  overflow: hidden;
  #border-left: 3px solid var(--cranberry);
  margin-bottom: 1rem;
  color: #333;
}

.panel p {
  margin: 1rem 0;
  line-height: 1.5;
}
.alt-theme {
  background-color: #f4f4f4;
  #border-left: 6px solid #000; /* black */
}
.alt-theme h2 {
  color: #000;
}

.zoom-help-button {
  text-align: center;
  margin-top: 40px;
}

.visit-btn {
  background: linear-gradient(135deg, var(--cranberry), #000);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.visit-btn:hover {
  background: #ef9a9a;
  color: #000;
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.3);
  transform: scale(1.05);
}
.alt-theme {
  background-color: #f1f1f1; /* soft light gray */
  #border-left: 6px solid #b0b0b0;
  color: #1c1c1c;
}

.alt-theme h2 {
  color: #333333;
}

.alt-theme .accordion {
  background-color: #e0e0e0; /* lighter accordion */
  color: #000;
  border-bottom: 1px solid #ccc;
}

.alt-theme .accordion:hover {
  background-color: #d5d5d5;
}

.alt-theme .panel {
  background-color: #ffffff; /* contrast for steps */
  #border-left: 3px solid #b0b0b0;
  color: #333;
}

.alt-theme .panel a {
  color: #0066cc;
  text-decoration: underline;
}
.quick-access-box {
  margin: auto;
  max-width: 800px;
  background-color: #f9f9f9;
  border: 2px solid #757575;
  padding: 1.75rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quick-access-box h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
}

.quick-access-box p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quick-access-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.quick-btn {
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quick-btn.desktop {
  background-color: var(--cranberry);
  color: #fff;
}

.quick-btn.ios {
  background-color: #007aff;
  color: #fff;
}

.quick-btn.android {
  background-color: #34a853;
  color: #fff;
}

.quick-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}
:root {
  --cranberry: #990000;
  --gray-dark: #333333;
  --gray-light: #f9f9f9;
  --accent-bg: #fff8f8;
  --white: #ffffff;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--gray-light);
  color: var(--gray-dark);
  padding: 30px;
}

.faq-dropdown {
  background-color: var(--accent-bg);
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cranberry);
  background-color: var(--white);
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.faq-toggle:hover {
  background: var(--gray-light);
}

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

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

.faq-content {
  padding: 0 20px 20px;
  display: none;
  font-size: 0.95rem;
  color: var(--gray-dark);
  background-color: var(--accent-bg);
}

.faq-content ol {
  padding-left: 20px;
}
   
.faq-content strong {
  color: var(--cranberry);
}


.quick-access-box {
  background-color: #f9f9f9;
  border: 2px solid #757575;
  padding: 1.75rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quick-access-box h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
}

.quick-access-box p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quick-access-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.quick-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: #fff;
}

.quick-btn img {
  width: 20px;
  height: 20px;
}

.quick-btn.desktop {
  background-color: #0078D4; /* Windows Blue */
}

.quick-btn.ios {
  background-color: #000000; /* Apple black */
}

.quick-btn.android {
  background-color: #3ddc84; /* Android green */
}

.quick-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}


/* Custom Angled VT Image */
.vt-angled-image {
    width: 65%;
    max-width: 350px;
    border: 7px solid #861F41; /* VT Maroon */
    border-radius: 10px;
    padding: 8px;
    background: #E5D4C0; /* VT Stone */
    box-shadow: 5px 5px 15px rgba(134, 31, 65, 0.3);
    transform: rotate(-3deg);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    margin: 25px auto;
    display: block;
}

.vt-angled-image:hover {
    transform: rotate(1deg) scale(1.02);
    box-shadow: 8px 8px 20px rgba(134, 31, 65, 0.4);
    filter: brightness(1.03);
}

.zoomable-original {
  width: 200px;        
  height: auto;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoomable-original:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}  .modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    text-align: center;
  }

  .modal-image {
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
    border: 10px solid white;
    border-radius: 10px;
  }
.phone-container {
            text-align: center;
            margin: 20px;
        }
        
        .zoomable-phone {
            width: 200px;
            border: 8px double #ff9999; /* Light red */
            border-radius: 15px;
            padding: 10px;
            background: #ffeeee;
            transform: rotate(-3deg);
            transition: all 0.3s ease;
            cursor: zoom-in;
        }
        
        .zoomable-phone:hover {
            transform: rotate(0deg);
            box-shadow: 0 5px 15px rgba(255, 153, 153, 0.4);
        }
        
        /* Modal styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            text-align: center;
        }
        
        .modal-image {
            max-width: 90%;
            max-height: 90%;
            margin-top: 5%;
            border: 10px solid white;
            border-radius: 10px;
        }
/* CSS Custom Properties for icons*/
:root {
    --cranberry: #990000;
    --gray: #333;
    --light-gray: #f9f9f9;
    --accent-bg: #fff8f8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 40px;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

/* Header Styling */
header {
    color: white;
    padding: 1rem;
    text-align: center;
    background-color: var(--cranberry);
    border: 2px solid var(--cranberry);
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

header .header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

header img {
    height: 50px;
}

h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    color: white;
}  

.dropdown {
    margin: 30px;
    position: relative;
    display: block;
}

.dropdown-toggle {
    background: linear-gradient(135deg, #990000 0%, #660000 100%);
    color: #fff;
    padding: 18px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(153, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.dropdown-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(153, 0, 0, 0.4);
    background: linear-gradient(135deg, #660000 0%, #990000 100%);
}

.dropdown-toggle:active {
    transform: translateY(-1px);
}

.dropdown-content {
    display: none;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-top: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown.open .dropdown-content {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.status-table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.status-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.status-table tr:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    transform: translateX(5px);
}

.status-table tr:last-child td {
    border-bottom: none;
}

.icon-cell {
    width: 80px;
    text-align: center;
    padding: 18px 15px;
}

.phone-svg {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.status-table tr:hover .phone-svg {
    transform: scale(1.1);
}

.status-description {
    font-weight: 500;
    color: #2c3e50;
}

.hd-text {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    body {
        margin: 20px;
    }
    
    header {
        padding: 0.75rem;
    }
 
    
    h1 {
        font-size: 1.8rem;
    }
    
    .dropdown {
        margin: 20px;
    }
    
    .status-table th,
    .status-table td {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .phone-svg {
        width: 28px;
        height: 28px;
    }
}


body {
  font-family: sans-serif;
  background: var(--gray-light);
  margin: 0;
  padding: 20px;
  color: var(--gray-dark);
}

.dropdown-container {
  max-width: 600px; /* a little wider now */
  margin: 40px auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.dropdown-header {
  width: 100%;
  padding: 15px;
  background: var(--cranberry);
  color: var(--white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
}

.dropdown-header:hover {
  background: #bb0000;
}

.dropdown-arrow {
  transition: transform 0.3s;
}

.dropdown-header[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Hidden by default */
.dropdown-content {
  display: none;
  padding: 0 15px 15px;
  background: var(--white);
}

/* When visible */
.dropdown-content.visible {
  display: block;
}

/* Bounce keyframes */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

/* Image container styling */
.zoom-interface-image {
  text-align: center;
  margin: 15px 0;
  padding: 10px;
  background: var(--gray-light);
  border: 2px solid var(--accent-bg);
  border-radius: 6px;
}

/* Responsive size + bounce on open */
.zoom-interface-image img {
  width: 90%;
  max-width: 600px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Trigger bounce when dropdown opens */
.dropdown-content.visible .zoom-interface-image img {
  animation: bounce 0.6s ease;
}

.steps {
  list-style: decimal inside;
  margin: 0;
  padding: 0;
}

.steps li {
  margin-bottom: 10px;
}


      