@charset "UTF-8";
/* styles.css - WC VERSION */

/* ============= FONT DEFINITIONS ============= */
@font-face {
    font-family: 'American Typewriter';
    src: url('../fonts/AmericanTypewriter.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/DINPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ============= BASE TYPOGRAPHY ============= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'American Typewriter', serif;
}

body, p {
    font-family: 'DIN', sans-serif;
}

/* ============= HEADER/NAVBAR ============= */
.navbar-custom {
    position: sticky;
    top: 0;
    z-index: 1020;               /* same as Bootstrap’s sticky-top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;           /* same as px-4 */
    height: 100px;
    background: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  }

.navbar-custom img {
    height: 65px;
    width: 180px;
}

#open-donate.btn {
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    background-color: #FF5733 !important;
    border-color: #FF5733 !important;
    color: #ffffff !important;
    border-radius: 0.5rem;
    transition: background-color 0.2s, border-color 0.2s;
    margin-right: 2rem;
}

/* hover / focus state */
  #open-donate:hover {
    background-color: #e65122 !important;
    border-color:     #e65122 !important;
  }

/* When modal is open */
#donate-modal {
    display: none;
    opacity: 1 !important;
}

/* ============= DONATION MODAL ============ */
/* Donation Modal Styles */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1050;
    align-items: center;
    justify-content: center;
  }
  
  .modal-backdrop.show {
    display: flex;
    opacity: 1 !important;
  }
  
  /* Modal container - ensure solid background */
  .modal-container {
    background-color: #ffffff !important; /* Important to override any inline styles */
    border-radius: 8px;
    max-width: 525px;
    width: 90%;
    position: relative;
    overflow: hidden;
    min-height: 650px; /* Increased from 500px to 650px */
    max-height: 85vh; /* Makes the modal responsive for different screen heights */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

	.modal-container input[type=number]::-webkit-outer-spin-button,
	.modal-container input[type=number]::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	.modal-container input[type=number] {
		-moz-appearance: textfield;
	}
  
  /* Close button */
  .backdrop-close {
    position: absolute;
    top: 50px;
    right: 50px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    z-index: 1060;
  }
  
  /* Slide styles */
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem 2rem 1rem 2rem;
    background-color: #ffffff !important; /* Make sure slides are opaque */
    transition: transform 0.3s ease-out;
    overflow-y: auto; /* Add scrolling if content is very tall */
	overflow-x: hidden;
	display: flex;
    flex-direction: column;
  }
  
  .slide.right {
    transform: translateX(100%);
  }
  
  .slide.left {
    transform: translateX(-100%);
  }
  
  .slide.active {
    transform: translateX(0);
  }
  
  /* Ensure all form elements are visible */
  .slide h2, .slide h3, .slide p, .slide button, .slide input, .slide label {
    opacity: 1 !important;
    color: inherit !important;
  }
  
  /* Form styling */
  .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  #custom-amt {
    height: 3.75rem;
  }
  
  .input-group .form-control {
    font-size: 18px;
  }

/* Create a content wrapper for step 1 */
#step-1 .step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Button container for step 1 - anchored to bottom */
#step-1 .button-container {
    margin-top: auto;
	margin-bottom: 20px;
    padding-top: 1rem;
}

#step-2 {
    justify-content: space-between;
}

/* Create a content wrapper for step 2 */
#step-2 .step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Button container for step 2 - anchored to bottom */
#step-2 .button-container {
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 1rem;
}

/* Selected state for frequency buttons (Give Once/Monthly) */
.freq.btn.active {
    background-color: #1d3a96 !important;
    border-color: #1d3a96 !important;
    color: #ffffff !important;
}

.freq.btn, .amt.btn {
    padding: 0.65rem 1rem;
}

/* Selected state for amount preset buttons */
.amt.btn.active {
    background-color: #1d3a96 !important;
    border-color: #1d3a96 !important;
    color: #ffffff !important;
}

/* Hover states for better UX */
.freq.btn:hover:not(.active) {
    background-color: rgba(29, 58, 150, 0.1);
    border-color: #1d3a96;
    color: #1d3a96;
}

.amt.btn:hover:not(.active) {
    background-color: rgba(29, 58, 150, 0.1);
    border-color: #1d3a96;
    color: #1d3a96;
}

  #step1-continue,
  #step2-continue {
    padding: 1rem 0;
    font-size: 20px;
    color: #ffffff !important;
    line-height: 1;
    background-color: #1d3a96 !important;
    border-color: #1d3a96 !important;
}

#step1-continue:hover {
    background-color: #153084 !important;
    border-color: #153084 !important;
}

#step2-continue:hover {
    background-color: #153084 !important;
    border-color: #153084 !important;
}
  
/* Step 3 specific layout - push donation box to bottom */
#step-3 {
    justify-content: space-between;
	padding: 2rem 2rem 0 2rem !important; /* Remove bottom padding */
}

/* Create a content wrapper for step 3 */
#step-3 .step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 1.5rem;
	min-height: 0;
}

#payment-element {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto; /* Add scrolling specifically to payment element */
	padding-left: 0.2rem;
    padding-right: 0.4rem;
    margin-right: -0.4rem;
    min-height: 185px;
    margin-bottom: 1.5rem;
}

/* Custom scrollbar styling for payment element specifically: */
#payment-element::-webkit-scrollbar {
    width: 8px;
}

#payment-element::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#payment-element::-webkit-scrollbar-thumb {
    background: #1d3a96;
    border-radius: 4px;
}

#payment-element::-webkit-scrollbar-thumb:hover {
    background: #153084;
}

/* Fixed donation summary and button container at bottom */
#step-3 .donation-summary-container {
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 1rem;
    margin: 0 -2rem 0 -2rem; /* Extend to edges of modal */
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

/* Donation summary styling - single line, smaller text */
.donation-summary-text {
    font-size: 16pt !important;
    font-weight: 500;
    color: #1d3a96;
    margin-bottom: 0.75rem;
    text-align: center;
}

/* Remove the card styling from the old donation summary */
#step-3 .card.donation-summary-card {
    display: none;
}

  /* Back button styling */
  .btn-back {
    color: #1d3a96;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
	border: none;
    background-color: none;
	text-decoration: none;
	padding: 0;
	margin: 0;
  }
  
  .btn-back:hover {
    color: #1d3a96;
	text-decoration: non;
    transform: translateX(-2px);
    transition: all 0.2s ease;
  }
  
  /* Payment message */
  #payment-message {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  #payment-message.error {
    background-color: #fee;
    color: #d00;
  }
  
  #payment-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
  }

/* Error state for buttons (amount selection and frequency) */
.btn.error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.btn.error.active {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
}

/* Error state for input group (custom amount with $ prefix) */
.input-group.error .input-group-text {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.input-group.error .form-control {
    border-color: #dc3545 !important;
}

.input-group.error .form-control:focus {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

/* Shake animation */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

/* Clear error states on interaction */
.form-control.error:focus {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

.form-control.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.btn.error:hover {
    border-color: #1d3a96 !important;
    color: #1d3a96 !important;
}

.btn.error.active:hover {
    background-color: #1d3a96 !important;
    border-color: #1d3a96 !important;
}



/* === DONATION FORM PAYMENT STYLES === */

.payment-container {
    display: none;
    margin-top: 20px;
    min-height: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background-color: #f8f9fa;
}

.payment-container.active {
    display: block;
}

.payment-btn {
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    width: 100%;
}

#card-container,
#wallet-container {
    min-height: 200px;
}
  
  /* Stripe Card Element */
  #card-element {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: white;
    min-height: 44px;
  }
  
  /* Error message styles */
  #card-errors {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
  
  /* Donation summary card */
  #step-3 .card {
    display: none !important;
  }
    
  
  /* Section headings for payment options */
  #step-3 .fw-medium {
    color: #1d3a96;
    font-weight: 500;
  }
  
  /* Accordion styles for payment options */
  #paymentAccordion .accordion-button {
    color: #1d3a96;
    background-color: #f8f9fa;
    box-shadow: none;
    font-family: 'DIN', sans-serif;
    font-size: 1.1rem;
  }
  
  #paymentAccordion .accordion-button:not(.collapsed) {
    background-color: rgba(29, 58, 150, 0.1);
    color: #1d3a96;
    font-weight: 500;
  }
  
  #paymentAccordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(29, 58, 150, 0.25);
    border-color: #1d3a96;
  }
  
  #paymentAccordion .accordion-item {
    border-color: #dee2e6;
  }
  
  /* Complete donation button */
  #submit-donation {
    background-color: #76961D;
    border-color: #76961D;
	color: #FFFFFF !important;
    font-size: 1.25rem;
    padding: 1rem 0;
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.2s, border-color 0.2s;
  }
  
  #submit-donation:hover {
    background-color: #667f1a;
    border-color: #667f1a;
	color: #FFFFFF !important;
  }
  
  #submit-donation:disabled {
    background-color: #a8bc72;
    border-color: #a8bc72;
  }
  
  /* Payment message styles */
  #payment-message {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
  }
  
  #payment-message.error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
  }
  
  #payment-message.success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
  }
  
  /* PayPal container */
  #paypal-button-container {
    min-height: 44px;
  }
  
  /* Payment request (Apple Pay / Google Pay) container */
  #payment-request-button {
    min-height: 48px;
  }
  
  #wallet-not-available {
    color: #6c757d;
    font-style: italic;
    text-align: center;
  }
  
  /* Responsive adjustments */
  @media (max-width: 576px) {   
    .slide {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    /* Step-specific mobile styles */
    #step-1 .button-container,
    #step-2 .button-container {
        padding-top: 0.5rem;
    }
    #step-3 {
        padding: 1.5rem 1.5rem 0 1.5rem !important;
    } 
    #step-3 .donation-summary-container {
        margin: 0 -1.5rem 0 -1.5rem; /* Fixed: removed bottom margin */
        padding: 0.75rem;
    }
	  
	#donation-summary {
      font-size: 1.1rem;
    }
    
    .donation-summary-text {
        font-size: 0.9rem !important;
    }
    
    #step-3 .fw-medium {
        font-size: 0.95rem;
    }
    
    #paymentAccordion .accordion-button {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    #submit-donation {
        font-size: 1.1rem;
        padding: 0.75rem 0; /* Fixed: was 0.6rem */
    }
	  
  }

/* ============= LOADING STEP (Step 4) ============= */
#step-4 {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

#step-4 .loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1d3a96;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.25rem;
    color: #1d3a96;
    font-weight: 500;
}

/* ============= THANK YOU STEP (Step 5) ============= */
#step-5 {
    justify-content: space-between;
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
}

#step-5 .step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #76961D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-title {
    font-size: 2rem;
    color: #1d3a96;
    margin-bottom: 0.5rem;
    font-family: 'American Typewriter', serif;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.receipt-info {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: #6c757d;
}

#step-5 .button-container {
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 1rem;
}

#close-final {
    background-color: #1d3a96;
    border-color: #1d3a96;
    color: #ffffff !important;
    font-size: 1.25rem;
    padding: 1rem 0;
    font-weight: 500;
    line-height: 1;
}

#close-final:hover {
    background-color: #153084;
    border-color: #153084;
    color: #ffffff !important;
}

/* Mobile adjustments for new steps */
@media (max-width: 576px) {
    #step-4 {
        padding: 2rem 1.5rem;
    }
    
    #step-5 {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
    }
    
    .loading-text {
        font-size: 1.1rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .thank-you-title {
        font-size: 1.75rem;
    }
    
    .thank-you-message {
        font-size: 1rem;
    }
    
    #step-5 .button-container {
        margin-bottom: 20px;
        padding-top: 0.5rem;
    }
    
    #close-final {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }
}



/* ============= HERO SECTION ============= */
.hero-section {
    background-color: white;
    text-align: center;
    padding: 50px 0px 0px 0px;
    margin-bottom: 75px;
}

.hero-section .container {
    max-width: 1500px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 68pt;
}

.hero-section h4 {
    font-size: 44pt;
}

/* ============= TWO COLUMN SECTION ============= */
.two-column-section {
    display: flex;
    background-color: #1d3a96;
    color: white;
}

.two-column-section .col-left {
    background-size: cover;
    background-position: center;
    flex: 1;
    min-height: 100%;
}

.two-column-section .col-right {
    flex: 1;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.two-column-section .col-right h2 {
    font-size: 48pt;
}

.two-column-section .col-right p {
    font-size: 20pt;
    line-height: 28pt;
    margin-bottom: 0;
}

/* ============= FULL WIDTH TEXT SECTION ============= */
.full-width-text {
    background-color: white;
    color: black;
    padding: 50px 75px;
    text-align: left;
}

.full-width-text h2 {
    font-size: 48pt;
}

.full-width-text p {
    font-size: 20pt;
    line-height: 28pt;
}

/* ============= CUSTOM BOX/PORTFOLIO SECTION ============= */
.portfolio-container {
    display: flex;
    gap: 50px;
    justify-content: left;
    flex-wrap: wrap;
    margin: 0px 0px 75px 0px;
    padding: 0 75px;
}

.custom-box {
    flex: 1;
    max-width: 650px; /* Reduced from 770px to fit two side by side */
    min-width: 400px; /* Minimum width before wrapping */
    border: 1pt solid #1d3a96;
    border-radius: 10px;
    padding: 25px;
    box-sizing: border-box;
    margin: 0; /* Remove individual margins since container handles spacing */
}

.custom-box h3 {
    font-size: 18pt;
    font-weight: bold;
}

.custom-box p {
    font-size: 14pt;
}

/* Portfolio image - main screenshot */
.custom-box > a {
    display: block;
    text-decoration: none;
}

.custom-box .main-image {
    width: 100%; /* Make responsive instead of fixed 710px */
    max-width: 600px; /* Adjusted for smaller box */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto 20px auto;
}

/* App availability and app store button */
.app-availability {
    display: block;
    margin-top: 15px;
    line-height: 1.4;
}

.app-availability a {
    display: inline;
    text-decoration: none;
}

.app-availability img.store-button,
.app-availability img.app-badge {
    width: 215px;
    height: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

/* ============= BLUE BAND SECTION ============= */
.blue-band {
    background-color: #1d3a96;
    color: white;
    padding: 75px;
    text-align: left;
}

.blue-band h2 {
    font-size: 48pt;
}

.blue-band p {
    font-size: 24pt;
}

/* ============= EMAIL FORM ============= */
.email-box {
    max-width: 625px;
    height: 50px;
    margin-top: 20px;
}

.email-box .form-control {
    border-right: none;
    border-radius: 0.375rem 0 0 0.375rem;
}

.email-box .btn {
    border-radius: 0 0.375rem 0.375rem 0;
    background-color: #76961D;
    border-color: #76961D;
}

.email-box .btn i {
    margin-left: 0px;
}

.email-box .form-control:focus {
    box-shadow: none;
}

/* ============= CONTACT INFORMATION SECTION ============= */
.contact-info {
    background-color: white;
    color: black;
    padding: 50px 50px 0px 50px;
    text-align: left;
}

.contact-info h1 {
    font-size: 48pt;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 20pt;
    line-height: 28pt;
}

/* ============= CONTACT US EMAIL SECTION ============= */
.contact-emails {
    margin: 25px 0;
}

.contact-emails h4 {
    font-size: 20pt;
    margin-top: 20px;
}

.contact-emails p {
    font-size: 14pt;
    margin-bottom: 10px;
}

/* ============= BLUE BAND (CONTACT US) ============= */
.contactus-blue-band {
    background-color: #1d3a96;
    color: white;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 75px;
}

.contactus-blue-band h4 {
    font-size: 24pt;
    padding-left: 75px;
    margin: 0;
}

.contactus-blue-band .logo {
    height: 100px;
}

/* ============= PRIVACY SECTION ============= */
.privacy-info {
    background-color: white;
    color: black;
    padding: 50px;
    text-align: left;
}

.privacy-policy-page {
    margin: 0 auto;
}

.privacy-policy-page p,
.privacy-policy-page ul,
.privacy-policy-page ul li {
    font-size: 22px;
    line-height: 28px;
}

.privacy-policy-page ul {
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-policy-page ul li {
    margin-bottom: 10px;
}

/* ============= FOOTER ============= */
.footer {
    background-color: white;
    height: 375px;
    color: black;
    text-align: left;
    padding: 75px;
    margin-bottom: 25px;
}

.footer p {
    font-size: 16pt;
    line-height: 24pt;
}

/* ============= MEDIA QUERIES ============= */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 48pt;
    }
    .hero-section h4 {
        font-size: 32pt;
    }
    .two-column-section .col-right h2,
    .full-width-text h2,
    .blue-band h2 {
        font-size: 36pt;
    }
	.portfolio-container {
        gap: 30px;
        padding: 0 50px;
    }
    
    .custom-box {
        max-width: 500px;
        min-width: 350px;
    }
    .blue-band p {
        font-size: 20pt;
    }
}

@media (max-width: 992px) {
    .hero-section .container {
        max-width: 100%;
        padding: 0 15px;
    }
    .full-width-text {
        padding: 40px 15px;
    }
    .two-column-section .col-left {
        min-height: 200px;
        height: auto;
    }
	.portfolio-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 15px;
    }
	.custom-box {
        max-width: 100%;
        min-width: unset;
        width: 100%;
    }
    .custom-box .main-image {
        max-width: 100%;
    }
    .email-box {
        width: 100%;
    }
    .contact-info h1 {
        font-size: 36pt;
    }
    .contact-info p {
        font-size: 18pt;
    }
    .contact-emails h4 {
        font-size: 20pt;
    }
    .contact-emails p {
        font-size: 16pt;
    }
    .contactus-blue-band {
        padding: 0 50px;
    }
    .contactus-blue-band h4 {
        font-size: 20pt;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36pt;
    }
    .hero-section h4 {
        font-size: 24pt;
    }
    .two-column-section {
        flex-direction: column;
    }
    .two-column-section .col-left {
        height: 300px;
        min-height: 300px;
    }
    .two-column-section .col-right h2,
    .full-width-text h2,
    .blue-band h2 {
        font-size: 28pt;
    }
	.portfolio-container {
        padding: 0 20px;
    }
	.custom-box .main-image {
        width: 100%;
        height: auto;
    }
    .blue-band p {
        font-size: 18pt;
    }
    .navbar-custom {
        padding-left: 20px;
    }
    .navbar-custom img {
        height: 50px;
        width: 140px;
    }
    .contact-info {
        padding: 20px 20px 0px 20px;
    }
    .contact-info h1 {
        font-size: 32pt;
    }
    .contact-info p {
        font-size: 16pt;
    }
    .contact-emails h4 {
        font-size: 18pt;
    }
    .contact-emails p {
        font-size: 14pt;
    }
    .contactus-blue-band {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        height: auto;
        padding: 20px 50px;
    }
    .contactus-blue-band h4 {
        padding-left: 0;
        margin-top: 15px;
    }
    .contactus-blue-band .logo {
        height: 90px;
        margin-bottom: 10px;
    }
    .privacy-info {
        padding: 20px 15px;
    }
    .privacy-policy-page {
        margin: 10px;
    }
    
    /* Fix main image on mobile */
    .custom-box .main-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 28pt;
    }
    .hero-section h4 {
        font-size: 20pt;
    }
    .two-column-section .col-right h2,
    .full-width-text h2 {
        font-size: 24pt;
    }
	.portfolio-container {
        padding: 0 15px;
    }
    .blue-band {
        padding: 25px 25px 50px 25px;
    }
    .blue-band h2 {
        font-size: 24pt;
    }
    .blue-band p {
        font-size: 16pt;
    }
    .contact-info h1 {
        font-size: 32pt;
    }
    .contact-info p {
        font-size: 16pt;
    }
    .contact-emails h4 {
        font-size: 16pt;
    }
    .contact-emails p {
        font-size: 12pt;
    }
    .contact-info {
        padding: 20px 15px 0px 3px;
    }
    .contactus-blue-band {
        padding: 15px 25px;
    }
    .contactus-blue-band .logo {
        height: 90px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .contactus-blue-band h4 {
        font-size: 18pt;
    }
    .privacy-policy-page {
        margin: 5px;
    }
    .footer {
        padding: 25px;
    }
    
    /* App availability on mobile */
    .app-availability {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-availability img.store-button,
    .app-availability img.app-badge {
        margin-left: 0;
        margin-top: 10px;
		width: 180px;
        height: 54px;
    }
}

/* App store button specific overrides */
#app-store-button {
    width: 200px !important;
    height: 60px !important;
    max-width: 200px !important;
    display: inline-block !important;
    margin-left: 10px !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 576px) {
    #app-store-button {
        margin-left: 0 !important;
        margin-top: 20px !important;
        width: 180px !important;
        height: 54px !important;
    }
}