/*
Theme Name: Nachsendeservice Theme
Description: Custom WordPress theme for mail forwarding service with Deutsche Post styling
Version: 1.0
Author: Custom Development
*/

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Deutsche Post Colors */
:root {
    --dp-yellow: #FFCC00;
    --dp-yellow-600: #FFE066;
    --dp-yellow-200: #FFF5CC;
    --dp-black: #000000;
    --dp-black-21: #212121;
    --dp-black-900: #212529;
    --dp-black-700: #202223;
    --dp-black-300: #424242;
    --dp-black-200: #6D7175;
    --dp-white: #FFFFFF;
    --dp-red: #E20613;
    --dp-green: #00873D;
    --dp-green-900: #006F32;
    --dp-gray: #666666;
    --dp-light-gray: #F5F5F5;
    --dp-border: #E0E0E0;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--dp-black);
    background-color: var(--dp-white);
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
} */

/* Header Styles */
.site-header {
    background-color: var(--dp-yellow);
    padding: 12px 0;
}
.toggle-switch{
    width: 39px !important;
    height: 24px !important;
}
input:checked + .slider:before{
    transform: translateX(15px) !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--dp-black);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav a {
    color: var(--dp-black-900);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 24px;
}

.main-nav a:hover {
    background-color: var(--dp-yellow-600);
}

.main-nav .btn-primary {
    background-color: var(--dp-yellow-600);
    color: var(--dp-black-900);
    border: 1px solid var(--dp-yellow-600);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.main-nav .btn-primary:hover {
    color: var(--dp-black-900);
    background-color: transparent;
}

.btn-primary {
    background-color: var(--dp-yellow);
    color: var(--dp-black);
    border: 2px solid var(--dp-black);
}

.btn-primary:hover {
    background-color: var(--dp-black);
    color: var(--dp-yellow);
}

.btn-success {
    background-color: var(--dp-green);
    color: var(--dp-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px;
}

.btn-success:hover {
    background-color: #008a44;
}

.btn-large {
    padding: 16px 32px;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background-color: var(--dp-white);
    padding: 40px 0;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Hide text content on hero section */
.hero-text {
    display: none;
}

.hero-right {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* Service Selection Form */
.service-selection {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.service-selection h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dp-black);
    line-height: 32px;
}

.service-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    padding: 6px;
    box-shadow: 0px 4px 12px 0px #00000014;
}

.service-btn {
    flex: 1;
    padding: 0;
    border: none;
    background-color: var(--dp-white);
    color: var(--dp-black);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* border-right: 1px solid var(--dp-border); */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1rem;
    color: var(--dp-black);
    line-height: 24px;
    font-weight: 500;
    padding: 12px;
}

.service-btn:last-child {
    border-right: none;
}

.service-btn:hover {
    background-color: #f8f9fa;
}

.service-btn.active {
    background-color: var(--dp-yellow);
    font-weight: 600;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dp-black);
    font-size: 20px;
    line-height: 32px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-family);
    background-color: var(--dp-white);
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 48px;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--dp-yellow);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.15);
}

/* Dropdown Arrow */
.form-group select.form-control {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 12px;
}

/* Date Section */

.date-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dp-black);
    border-color: var(--dp-yellow-200);
}

.date-picker-input {
    position: relative;
    flex: 1;
}

.date-picker-input input {
    padding-right: 50px;
    color: var(--dp-gray);
}

.calendar-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 20px;
    color: var(--dp-gray);
}

/* Info Text */
.info-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 24px;
    color: var(--dp-gray);
}

/* .info-icon {
    width: 16px;
    height: 16px;
    background-color: var(--dp-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
}

.info-icon::after {
    content: "i";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 600;
    color: var(--dp-black);
} */

/* Apply Now Button */
.apply-btn {
    margin-top: 28px;
}

.apply-btn .btn {
    width: 100%;
    background-color: var(--dp-green);
    color: var(--dp-white);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 48px;
    box-sizing: border-box;
    line-height: 1.2;
}

.apply-btn .btn:hover {
    background-color: #008a44;
    color: var(--dp-white);
    text-decoration: none;
    transform: translateY(-1px);
}


.benefits-container {
    padding: 48px 40px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.benefit-card {
    background: #FFF5CC80;
    text-align: center;
    padding: 32px;
    border-radius: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 226px;
}

.benefit-icon {
    margin-bottom: 24px;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--dp-black-700);
}

.benefit-card p {
    font-size: 16px;
    color: var(--dp-gray);
    line-height: 100%;
    margin-bottom: 0;
}

.your-benefits {
    background: #FFF5CC80;
    padding: 32px;
    border-radius: 24px;
}

.your-benefits-icon {
    text-align: center;
    padding-top: 8px;
}

.your-benefits-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.your-benefits h3 {
        font-size: 22px;
    font-weight: 500;
    color: var(--dp-black);
    margin: 0;
    line-height: 140%;
}

.your-benefits-content {
    padding-top: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding-bottom: 16px;
    padding-left: 16px;
    position: relative;
    font-size: 16px;
    color: var(--dp-black-300);
    line-height: 1.5;
}
.benefits-list li:last-child {
    padding-bottom: 0;
}
.benefits-list li:before {
    content: "•";
    color: var(--dp-black-300);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--dp-white);
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
}

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

.faq-item {
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--dp-white);
    padding: 10px 16px;
    cursor: pointer;
    color: var(--dp-black-900);
    font-size: 16px;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--dp-light-gray);
}


.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 16px 20px;
    background-color: var(--dp-white);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dp-gray);
    display: none;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer.active {
    display: block;
}

.disclaimer {
    font-size: 16px;
    color: var(--dp-gray);
    line-height: 100%;
    padding-bottom: 56px;
}
/* Statistics Section */
.stats-section {
    margin-bottom: 24px;
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    text-align: center;
    background-color: var(--dp-white);
    border-radius: 24px;
    box-shadow: 0px 4px 12px 0px #00000014;
    margin: 0 auto;
    box-sizing: border-box;
}
.stats-mob-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding:.75rem;
    text-align: center;
    background-color: var(--dp-white);
    border-radius: 24px;
    box-shadow: 0px 4px 12px 0px #00000014;
    margin: 0 auto;
    box-sizing: border-box;
}

.stats-icon img {
    width: 80px;
    height: 80px;
}

.stats-text {
    font-size: 28px;
    color: var(--dp-black);
    line-height: 32px;
    font-weight: 600;
}
.stats-mob-text {
    font-size: 1rem;
    color: var(--dp-black);
    line-height: 23px;
    font-weight: 600;
}

.stats-number {
    font-weight: 800;
}

/* Global FAQ Section */
.global-faq-section {
    padding: 40px 0;
    background-color: var(--dp-white);
}

.global-faq-section h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 24px;
}

.global-faq-section .faq-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: var(--dp-white);
    color: var(--dp-black);
    border-top: 1px solid var(--dp-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
    gap: 24px;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-left p {
    font-size: 12px;
    line-height: 24px;
    color: var(--dp-black-200);
    margin: 0;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.footer-center a {
    color: var(--dp-black-200);
    text-decoration: none;
    font-size: 12px;
    line-height: 24px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer-center a:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.footer-right img {
    height: 24px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-right img:hover {
    opacity: 1;
}

    
/* Complete Form Page Styling */


.form-header {
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dp-black-21);
}

.forwarding-form {
    margin-bottom: 30px;
}


.form-section:last-child {
    border-bottom: none;
}

.form-section h2 {
        font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dp-black);
    line-height: 32px;
}

.form-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dp-black);
}

.previous-address {
    background-color: #F5F5F5;
    padding: 24px;
    border-radius: 24px;
}

.new-address {
    background-color: #FFF9E6;
    padding: 24px;
    border-radius: 24px;
}

.info-note p{
    font-size: 14px;
    margin-bottom: 0;
    color: var(--dp-gray);
}
.checkbox-description {
    font-size: 14px;
    line-height: 24px;
    color: var(--dp-gray);
    margin: 4px 0 16px 28px;
}

.po-box-link {
    margin: 15px 0;
}

.add-po-box,
.add-additional-mailbox {
    color: var(--dp-black);
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.add-po-box:hover,
.add-additional-mailbox:hover {
    text-decoration: none;
}

.po-box-section,
.additional-mailbox-section {
    margin-top: 14px;
}

.po-box-info,
.mailbox-info {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
    color: var(--dp-gray);
}

.mailbox-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.mailbox-info li {
    margin-bottom: 8px;
}

.info-note .info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}


.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dp-black-21);
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--dp-border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--dp-green);
    border-color: var(--dp-green);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.additional-address {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--dp-border);
}

.care-of-details {
    margin-top: 15px;
    padding-left: 28px;
}

/* Duration Section */
.duration-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0px 4px 12px 0px #00000014;
}

.duration-option {
    position: relative;
}

.duration-option.recommended .recommended-badge {
    position: absolute;
    top: -52px;
    right: -10px;
    background: url(images/ic-discount.svg) no-repeat center center transparent;
    color: white;
    padding: 4px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    rotate: 25deg;
    width: 64px;
    height: 64px;
    line-height: 14px;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.duration-radio {
    display: none;
}

.duration-label {
    cursor: pointer;
}

.duration-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: var(--dp-white);
}

.duration-radio:checked + .duration-label .duration-card {
    background-color: var(--dp-yellow);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.2);
}

.duration-period {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.duration-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--dp-black);
    margin-bottom: 0;
}

.duration-note {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    color: var(--dp-gray);
}

/* Application Section */
.order-summary {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--dp-black);
}
.order-summary span{
    background-color: #DFF6E6;
    color: #004D26;
    border-radius: 30px;
    padding: 1px 10px;
    font-weight: bold;
    display: inline-block;
}
.terms-list {
    margin: 24px 0;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.total-amount {
    margin: 20px 0;
    font-size: 16px;
    color: var(--dp-black);
}
.payment-section{
    padding-left: 24px;
    padding-right: 24px;
}
.form-check-inline{
    margin-right: .5rem;
    align-items: center;
    display: inline-flex;
    gap: .5rem;
}

/* Payment Section */
.payment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-option {
    position: relative;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.payment-option img {
    height: 35px;
    width: auto;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 5px;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + img {
    border-color: var(--dp-green);
    background-color: #f0fff4;
}

.payment-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Terms Section */
.terms-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--dp-gray);
    margin-bottom: 20px;
}

.terms-text p {
    margin-bottom: 12px;
    line-height: 100%;
}

.terms-text a {
    color: var(--dp-green);
    text-decoration: underline;
}



.checkout-btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--dp-green);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #008a44;
}

/* FAQ Section in Form Pages */
.form-page .faq-section {
    background-color: var(--dp-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-page .faq-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}
.mx-w-600{
    max-width: 600px !important;
}

/* Success Page Styles */
.success-page {
    background-color: var(--dp-light-gray);
    min-height: 100vh;
}

.success-section {
    padding: 40px 0;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.success-message {
    text-align: center;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon img {
    width: 60px;
    height: 60px;
}

.success-message h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dp-green);
    margin-bottom: 15px;
}

.success-message > p {
    font-size: 16px;
    color: var(--dp-black);
    margin-bottom: 30px;
}

.review-section {
    background-color: var(--dp-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.review-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4285f4;
    text-align: center;
}

.google-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.google-logo img {
    width: 32px;
    height: 32px;
}

.review-form {
    width: 100%;
    max-width: 350px;
}

.review-textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid var(--dp-border);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 14px;
    resize: vertical;
    margin-bottom: 15px;
}

.review-textarea:focus {
    outline: none;
    border-color: #4285f4;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.star {
    font-size: 20px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star:hover,
.star.active {
    color: #ffc107;
}

.review-btn {
    width: 100%;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.review-btn:hover {
    background-color: #3367d6;
}


/* About Page Styles */
.about-page {
    background-color: var(--dp-light-gray);
    min-height: 100vh;
    padding: 60px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--dp-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dp-black);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dp-gray);
}
.mt-80{
    margin-top: 80px;
}
.mt-40{
    margin-top: 40px;
}

.application-section{
    padding: 20px;
}

.terms-section{
    padding-left: 24px;
    padding-right: 24px;
}
.page-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dp-green-900);
    line-height: 40px;
}
.thank-you-message{
    font-size: 24px;
    font-weight: 500;
    color: var(--dp-black);
    line-height: 36px;
    margin-bottom: 0;
}
.order-details{
    font-size: 20px;
    color: #3086FF;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 8px;
}
.resize-none{
    resize: none;
}

.btn-blue {
    background-color: #3086FF;
    color: var(--dp-white);
    border: 1px solid #3086FF;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-blue:hover {
    color: var(--dp-white);
}
.navbar-toggler{
    border: none !important;
    padding: 0 !important;
}
.navbar-toggler:focus{
    box-shadow: none !important;
}

.yellow-box{
    background-color: var(--dp-yellow);
    padding-top: 20px;
    padding-bottom: 20px;
}
.white-rounded-box{
    background-color: var(--dp-white);
    border-radius: 24px;
    height: 3rem;
    margin-top: -20px;
}
.success-box{
    max-height: 311px;
    overflow: hidden;
    z-index: -1;
    position: relative;
}
@media screen and (max-width: 768px) {
    .mt-mob-0{
        margin-top: 0px !important;
    }
	.yellow-box{padding-top:0;padding-bottom:10px;}
	.service-selection{margin-top:-1.5rem;}
	.service-buttons{margin-bottom:.75rem}
	.form-group{margin-bottom:.75rem}

    .duration-option.recommended .recommended-badge {
          position: absolute !important;
        top: -8px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
        font-size: 0.7rem !important;
        background: #e30613 !important;
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        white-space: nowrap;
        rotate: none !important;
        width: auto !important;
        height: auto !important;
}
}
