/* === Section Background & Title === */
.cloud-color-section {
    background: #601020; /* soft gray, common in 2010s */
    padding: 60px 20px;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #333;
}

.cloud-color-section h2 {
    font-size: 32px;
    color: #601020;
    text-shadow: 1px 1px 0 #fff;
    margin-bottom: 40px;
}

/* === Plan Containers === */
.worldwide-container.secondary-container.plans {
    background: linear-gradient(to bottom, #ffffff, #eaeaea);
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 30px auto;
    padding: 30px;
    max-width: 900px;
}

/* === Plan Name Titles === */
.plan-name {
    font-size: 24px;
    font-weight: bold;
    color: #2d6ca2;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 #fff;
}

/* === Column Layout === */
.plans-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* === Individual Columns === */
.left-col3 {
    width: 30%;
    min-width: 200px;
    margin-bottom: 20px;
    font-size: 15px;
    background: #fafafa;
    padding: 15px;
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid #ddd;
}

/* === Headings inside columns === */
.left-col3 p:first-of-type {
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

/* === Divider === */
.elementor-divider {
    margin: 10px 0;
}

.elementor-divider-separator {
    display: block;
    border-top: 1px dashed #bbb;
    height: 1px;
    width: 100%;
}

/* === Text inside column === */
.left-col3 p:last-of-type {
    font-size: 14px;
}

/* === Responsive 2010s Style === */
@media screen and (max-width: 768px) {
    .plans-columns {
        flex-direction: column;
    }

    .left-col3 {
        width: 100%;
    }
}

.section.bg-white.worldwide-fw-wrap.bot-pad {
    padding: 60px 20px;
    background-color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333;
}

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

.faq-section h2.center {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.faq-section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    background-color: #f5f7fa;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-col {
    flex: 1 1 calc(50% - 30px);
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.faq-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-col svg {
    width: 30px;
    height: 30px;
    fill: #3498db;
    margin-bottom: 15px;
}

.faq-col p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

.faq-col p strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 6px;
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
    .faq-col {
        flex: 1 1 100%;
    }
}

.section.bg-white {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.split-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.left-column {
    flex: 1 1 50%;
    padding: 20px;
}

.right-column {
    flex: 1 1 45%;
    text-align: center;
}

.right-column img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.section-heading {
    font-size: 28px;
    margin-bottom: 20px;
    color: #601020;
}

.primary-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #601020;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1c6390;
}

/* Optional: subtle fade/slide animation (popular in mid-2010s) */
.text-info,
.about-image-column {
    transition: all 0.4s ease-in-out;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
    .split-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-column,
    .right-column {
        flex: 1 1 100%;
        padding: 10px 0;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

.section.no-padding-section {
    padding: 60px 20px;
    background-color: #f5f7fa;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-form h2,
.contact-form h3 {
    color: #601020;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.contact-form p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1 1 48%;
}

.form-control,
.drop-down {
    width: 100%;
    color: black;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s;
}

.form-control:focus,
.drop-down:focus {
    border-color: #601020;
    outline: none;
}

.drop-down {
    appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="gray" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 14px center;
    background-size: 16px;
}

input[type="submit"].cta-button {
    display: block;
    margin: 40px auto 0;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #601020;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"].cta-button:hover {
    background-color: #1f638a;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
    .form-group {
        flex: 1 1 100%;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

fieldset {
    border: unset;
}

form p {
    text-align: left;
}

/* === Shipping Types Section === */
.shipping-types-section {
    background-color: #f4f4f4; /* light background to separate the section */
    padding: 60px 20px;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #333;
}

.shipping-types-cols {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* === Individual Shipping Type Card === */
.shipping-type {
    color: #601020;
    width: 30%;
    min-width: 280px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.shipping-types-cols .left-col3 {
    color: #ffffff!important;
}

.shipping-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.shipping-type .text-block {
    height: 250px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.shipping-type .text-block p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* === Title inside each card === */
.shipping-type .text-block p strong {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* === No Shadow class override (if any specific styling required) === */
.shipping-type.no-shadow {
    box-shadow: none;
}

/* === Mobile Adaptation === */
@media screen and (max-width: 768px) {
    .shipping-types-section {
        padding: 40px 20px;
    }

    .shipping-types-cols {
        flex-direction: column;
        gap: 20px;
    }

    .shipping-type {
        width: 100%;
        height: 300px; /* Adjust the height for a more proportional look on mobile */
    }

    .shipping-type .text-block {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
    }

    .shipping-type .text-block p {
        font-size: 14px; /* Slightly smaller font size for mobile */
        line-height: 1.4;
    }

    .shipping-type .text-block p strong {
        font-size: 16px; /* Slightly smaller title for mobile */
        margin-bottom: 8px;
    }
}
