/* Landing Page Styles */

.landing-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
    background: #fff;
    padding: 40px 0;
}

.landing-left {
    flex: 1 1 320px;
    max-width: 420px;
    margin: 20px 30px 20px 0;
    padding: 0 15px;
}

.landing-google-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 5px;
}

.landing-google-logo {
    height: 64px;
    margin-right: 10px;
}

.landing-title {
    font-size: 2em;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    /* background: #eaf3ea; */
    display: inline-block;
    line-height: 1.2;
}

.landing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    font-size: 1.1em;
    color: #222;
}
.landing-list li {
    margin-bottom: 8px;
}
.landing-list .highlight {
    color: #720990;
    text-decoration: underline;
}
.landing-call-btn {
    display: inline-block;
    background: #720990;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    margin-top: 10px;
}

.purple-form-container {
    background: #5d307b;
    padding:0 32px 32px 32px;
    border-radius: 18px;
    color: white;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.purple-form-title {
    text-align: center;
    font-size: 1.7em;
    font-weight: 700;
    margin-bottom: 22px;
    color: #fff;
}

.purple-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.purple-form input,
.purple-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e68fcb;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1em;
    box-sizing: border-box;
}

.purple-form input::placeholder,
.purple-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.purple-form button[type="submit"] {
    width: 100%;
    background: #ffcf22;
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.1em;
}

.purple-form button[type="submit"]:hover {
    background: #e6ba1f;
}

.purple-form-privacy {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    /* margin-top: 12px; */
    line-height: 1;
    max-width: 100%;
    padding-bottom: 10px;
}

/* Estimator options styles */
.estimator-option {
    border: 1px solid #e68fcb;
    padding: 15px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

.estimator-option label {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-size: 1em;
}

.estimator-option small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-size: 0.9em;
}

/* Outlet counter styles */
.outlet-button {
    background: #431565;
    border: 1px solid #b884e1;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.3s;
    box-sizing: border-box;
}

.outlet-button:hover {
    background: #5d307b;
}

.outlet-button.minus {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none;
}

.outlet-button.plus {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: none;
}


/* Checkbox styles */
.estimator-option input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    box-sizing: border-box;
}

.estimator-option input[type="number"] {
    width: 60px !important;
    text-align: center;
    box-sizing: border-box;
}

/* Price display styles */
#estimator-price-wrap {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px 20px 20px 20px;
    background: #720990;
    border-radius: 10px;
}

#estimator-price {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

#estimator-price small {
    font-size: 0.4em;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

#estimator-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0px;
    line-height: 1;
    background: none;
    margin-bottom: 0px;
}

.landing-main-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.feature-cards-section {
    width: 100%;
    padding: 40px 0 30px 0;
    background: linear-gradient(150deg, rgba(93, 0, 222, 1) 0%, rgba(138, 13, 61, 1) 100%);
    display: flex;
    justify-content: center;
}
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    /* border: 1px solid #bbb; */
    /* border-radius: 6px; */
    overflow: hidden;
    /* background: #fff; */
    box-sizing: border-box;
}
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 22px 18px;
    /* border-right: 1px solid #bbb; */
    /* border-bottom: 1px solid #bbb; */
    /* background: #fff; */
    min-height: 260px;
    text-align: center;
}
.feature-card:last-child {
    /* border-right: none; */
}
.feature-cards-grid .feature-card:nth-child(n+5) {
    /* border-bottom: none; */
}
.feature-card-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 18px;
}
.feature-card-title {
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fafafa;
}
.feature-card-desc {
    font-size: 1em;
    color: #f9f9f9;
    margin: 0;
}
@media (max-width: 900px) {
    .feature-card {
        /* border-right: 1px solid #bbb; */
    }
    .feature-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-cards-grid .feature-card:nth-child(2n) {
        /* border-right: none; */
    }
}
@media (max-width: 600px) {
    .feature-card {
        /* border-right: none; */
        /* border-bottom: 1px solid #bbb; */
    }
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    .feature-cards-grid .feature-card:last-child {
        /* border-bottom: none; */
    }
}

.about-section {
    width: 100%;
    background: url('img/outlet-install.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.about-header {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 18px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.about-header-highlight {
    font-weight: 700;
    background: #eaf3ea;
    color: #2d6a3e;
    padding: 0 4px;
    border-radius: 2px;
}

.about-text-col {
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.08em;
    color: #fff;
    position: relative;
    z-index: 1;
}

.about-text-col p {
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-text-col p:last-child {
    margin-bottom: 0;
}

.highlight-green {
    color: #28a745;
    font-weight: 600;
}

.highlight-red {
    color: #dc3545;
    font-weight: 600;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.landing-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.landing-container, .feature-cards-grid, .about-grid {
    box-sizing: border-box;
}

.why-choose-section {
    width: 100%;
    background: url('img/installer.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.why-choose-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.why-choose-text {
    padding: 32px 28px 32px 32px;
    font-size: 1.08em;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.why-choose-text p {
    margin-bottom: 18px;
    line-height: 1.6;
}

.why-choose-image {
    display: none; /* Hide the image since we're using it as background */
}

@media (max-width: 900px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    width: 100%;
    background: #fafafa;
    padding: 44px 0 44px 0;
    display: flex;
    justify-content: center;
}

.faq-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 24px;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.faq-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #222;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.faq-item {
    border-bottom: 1px solid #222;
    transition: background 0.2s;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: #fff;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    color: #222;
    position: relative;
    box-sizing: border-box;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    color: #720990;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.open .faq-question,
.faq-question:hover {
    background: #f5f5f5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 22px;
    box-sizing: border-box;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 12px 22px 18px 22px;
    overflow-y: auto;
}

.faq-answer p {
    margin: 0;
    color: #222;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Responsive FAQ styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-title {
        font-size: 1.3em;
        margin-bottom: 20px;
        gap: 6px;
    }
    
    .faq-list {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 1em;
    }
    
    .faq-question::after {
        right: 18px;
        font-size: 0.7em;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.open .faq-answer {
        padding: 10px 18px 16px 18px;
    }
    
    .faq-answer p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px 0;
    }
    
    .faq-title {
        font-size: 1.2em;
        margin-bottom: 16px;
        gap: 4px;
        flex-wrap: wrap;
    }
    
    .faq-list {
        max-width: 98%;
        border-radius: 4px;
    }
    
    .faq-question {
        padding: 14px 20px;
        font-size: 0.95em;
    }
    
    .faq-question::after {
        right: 16px;
        font-size: 0.6em;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.open .faq-answer {
        padding: 8px 16px 14px 16px;
    }
    
    .faq-answer p {
        font-size: 0.95em;
        line-height: 1.5;
    }
}

/* Remove these classes as they're no longer needed */
.about-image-col,
.why-choose-image {
    display: none;
}

@media (max-width: 900px) {
    .about-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.grey-footer {
    background: #2c2c2c;
    padding: 40px 0;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    /* min-width: 140px; */
    justify-content: center;
    border-bottom: none;
}

.social-link i {
    font-size: 20px;
}

.social-link span {
    font-size: 15px;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Social media specific colors */
.social-link.youtube:hover {
    background: #FF0000;
}

.social-link.tiktok:hover {
    background: #000000;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook:hover {
    background: #1877F2;
}

.footer {
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Tablet */
@media (max-width: 768px) {
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        min-width: 120px;
        padding: 10px 20px;
    }
    
    .social-link i {
        font-size: 18px;
    }
    
    .social-link span {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .grey-footer {
        padding: 30px 0;
    }
    
    .social-links {
        gap: 15px;
        padding: 0 10px;
    }
    
    .social-link {
        min-width: 100px;
        padding: 8px 16px;
    }
    
    .social-link i {
        font-size: 16px;
    }
    
    .social-link span {
        font-size: 13px;
    }
    
    .footer {
        font-size: 12px;
        padding: 0 15px;
    }
}

/* Medium Mobile */
@media (max-width: 425px) {
    .landing-container {
        padding: 0;
    }
    
    .about-header {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    
    #estimator-price {
        font-size: 28px;
    }
    
    #estimator-sub {
        font-size: 10px;
    }
    .about-section , .why-choose-section {
        padding: 30px 0;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .landing-main-row {
        gap: 10px;
    }
    
    .landing-left {
        margin: 10px 0 10px 0;
        padding: 0 10px;
    }
    
    .landing-title {
        font-size: 1.2em;
    }
    
    .landing-call-btn {
        padding: 6px 12px;
        font-size: 0.85em;
    }
    
    .landing-list {
        font-size: 0.9em;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        min-width: 80px;
        padding: 8px 12px;
    }
    
    .social-link span {
        display: none;
    }
    
    .social-link i {
        font-size: 18px;
        margin: 0;
    }
    
    .purple-form-container {
        padding: 0 10px 10px 10px;
        margin: 0;
    }
    
    .form-row {
        gap: 5px;
    }
    
    .purple-form-title {
        font-size: 1.3em;
    }
    .landing-google-logo {
        height: 32px;
        width: 32px;
    }
}

@media (max-width: 768px) {
    .landing-main-row {
        gap: 20px;
    }
    
    .landing-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px 10px 20px 0;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .landing-title {
        font-size: 1.6em;
    }
    
    .landing-call-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .landing-list {
        font-size: 1em;
    }
    
    
    .purple-form-container {
        padding: 0 20px 20px 20px;
        margin: 0 10px;
    }
    
    .form-row {
        gap: 10px;
    }
    
    #estimator-price {
        font-size: 34px;
    }
    
    #estimator-sub {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .landing-main-row {
        gap: 15px;
    }
    
    .landing-left {
        margin: 15px 5px 15px 0;
        padding: 0 15px;
    }
    
    .landing-title {
        font-size: 1.4em;
    }
    
    .landing-call-btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
    
    .landing-list {
        font-size: 0.95em;
    }
    
    .purple-form-container {
        padding: 0 15px 15px 15px;
        margin: 0 5px;
    }
    
    .form-row {
        gap: 8px;
    }
    
    .purple-form-title {
        font-size: 1.5em;
    }
    
    #estimator-price {
        font-size: 32px;
    }
    
    #estimator-sub {
        font-size: 11px;
    }
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    color: white;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.form-group input[type="number"],
.purple-form input[type="text"],
.purple-form input[type="email"] {
    width: 100% !important;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #e68fcb;
    border-radius: 6px;
    color: white;
    font-size: 0.95em;
}

.form-group input[type="number"]::placeholder,
.purple-form input[type="text"]::placeholder,
.purple-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #e68fcb;
    border-radius: 6px;
    padding: 12px;
    /* margin-bottom: 12px; */
}

.checkbox-group:last-of-type {
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    color: white;
    font-size: 0.95em;
    margin: 0;
    cursor: pointer;
}

/* Style number input arrows */
.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    height: 30px;
    cursor: pointer;
}

.notification-message {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    background-color: #fff3f3;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    padding: 15px 20px;
    position: relative;
}

.notification-content h3 {
    margin: 0 0 10px 0;
    color: #d32f2f;
    font-size: 1.1em;
}

.notification-content p {
    margin: 0;
    color: #d32f2f;
    font-size: 0.95em;
    line-height: 1.4;
}

.notification-content a {
    color: #d32f2f;
    text-decoration: underline;
}

.close-notification {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-notification:hover {
    background-color: rgba(211, 47, 47, 0.1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-message.success {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
}

.notification-message.success .notification-content h3 {
    color: #2e7d32;
}

.notification-message.success .notification-content p {
    color: #2e7d32;
}

.notification-message.success .notification-content a {
    color: #2e7d32;
}

.notification-message.success .close-notification {
    color: #2e7d32;
}

.notification-message.success .close-notification:hover {
    background-color: rgba(46, 125, 50, 0.1);
}

/* Featured On Section */
.featured-on-section {
    padding: 30px 0;
    background: #f8f9fa;
    text-align: center;
}

.featured-on-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

.featured-logo {
    flex: 0 1 auto;
    transition: transform 0.3s ease;
    transform-origin: center;
    padding: 5px;
}

.featured-logo:hover {
    transform: scale(1.05);
}

.featured-logo-img {
    width: 200px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
}

.featured-logo-img.stuff-logo {
    height: 42px;
}

.featured-logo:hover .featured-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .featured-logos {
        gap: 0;
    }
    
    .featured-logo-img {
        width: 200px;
        height: 30px;
        object-fit: contain;
    }
    
    .featured-logo-img.stuff-logo {
        height: 42px;
    }
    
    .featured-on-title {
        font-size: 1.8em;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .featured-logos {
        gap: 0;
        flex-direction: column;
    }
    
    .featured-logo-img {
        width: 200px;
        height: 30px;
        object-fit: contain;
    }
    
    .featured-logo-img.stuff-logo {
        height: 42px;
    }
    
    .featured-on-title {
        font-size: 1.6em;
        margin-bottom: 12px;
    }
}

.faq-help:hover::before,
.faq-help:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Form info styles */
.form-info {
    text-align: center;
    margin-top: -14px;
}

.form-info small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-style: italic;
}

/* Inline style replacements */
.google-brand {
    font-size: 1.2em;
    font-weight: 600;
    color: #222;
}

.google-rating {
    margin-left: 8px;
    color: #fbbc04;
    font-size: 1.1em;
}

.price-comparison-title {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: bold;
}

.price-comparison-text {
    text-align: center;
    font-size: 16px;
    max-width: 500px;
    margin: 15px auto;
}

.footer-info-section {
    margin-bottom: 32px;
    text-align: center;
}

.footer-info-block {
    margin-bottom: 18px;
    padding: 10px 0;
}

.footer-info-block:last-child {
    margin-bottom: 0;
}

.footer-info-title {
    font-size: 1.35em;
    font-weight: 700;
    color: #fff;
    display: block;
}

.footer-info-text {
    font-size: 1em;
    color: #fff;
}

.footer-info-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.footer-info-link:hover {
    text-decoration: none;
}

/* FAQ Help Tooltip */
.faq-help {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 0.85em;
    background: #720990;
    color: #fff;
    border-radius: 50%;
    width: 1.4em;
    height: 1.4em;
    text-align: center;
    line-height: 1.4em;
    font-weight: bold;
    cursor: help;
    transition: background 0.2s;
}

.faq-help:hover {
    background: #5a0775;
}

.faq-help:hover::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.faq-help:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    margin-bottom: 3px;
}

