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

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Noto Sans JP';
    font-display: swap;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.73;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* max-width: 1366px; */
    z-index: 100;
    padding: 16px 24px;
}

/* Contact page, Company page, and Privacy Policy page header background */
body:has(.thank-you-section) .header,
body:has(.company-section) .header,
body:has(.privacy-section) .header {
    background: #0b0c3e;
    position: relative;
    transform: none;
    left: 0;
}

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

.logo {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    color: #fff;
}

.logo i {
    font-size: 20px;
    letter-spacing: 4px;
    margin-top: 10px;
}


.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 21px;
    letter-spacing: 1.26px;
    color: #f9f9f9;
}

.logo-subtitle {
    font-size: 14px;
    letter-spacing: 0.84px;
    color: #f9f9f9;
    text-align: center;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 24px;
    color: #f9f9f9;
    font-size: 16px;
    letter-spacing: 1.92px;
}

.nav-list a:hover {
    opacity: 0.8;
}

.header-phone-btn {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 24px 32px;
    border-radius: 50px;
    background: linear-gradient(to bottom, #4c4d86 0%, #0b0c3d 100%);
    border: 1px solid #4c4c64;
    color: #fff;
    font-size: 21px;
    letter-spacing: 1.68px;
    transition: opacity 0.3s;
}

.header-phone-btn:hover {
    opacity: 0.9;
}

.header-phone-btn i {
    font-size: 14px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    /* max-width: 1366px; */
    margin: 0 auto;
    padding: 137px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    width: 115.41%;
    height: 156.74%;
    top: -36.63%;
    left: -10.81%;
    max-width: none;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge span {
    display: inline-block;
    padding: 16px 24px;
    background: #fff;
    border-radius: 50px;
    font-size: 35px;
    font-weight: 700;
    color: #0b0b3b;
    letter-spacing: 1.05px;
}

.badge-arrow {
    width: 21.536px;
    height: 21.536px;
    background: #fff;
    transform: rotate(-45deg);
    margin-top: -10px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 2.4px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 21px;
    color: #fdff71;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 4.2px;
}

/* Phone CTA Bar */
.phone-cta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 10px;
    background: #0b0c3e;
    margin: 0 auto;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 999;
}

.cta-text {
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    line-height: 1.73;
}

.cta-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: #fcde10;
    border: 1px solid #0b0c3e;
    border-radius: 6px;
    box-shadow: 0 3px 0 0 #0b0c3e;
    color: #0b0c3e;
    font-size: 27px;
    font-weight: 700;
    transition: transform 0.2s;
}

.cta-phone-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 #0b0c3e;
}

.cta-phone-btn i {
    font-size: 16px;
}

/* Form Section */
.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 64px 0;
    background: rgba(11, 12, 62, 0.04);
    margin: 0 auto;
}

.form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    width: 484px;
}

.form-icon {
    width: 80px;
    height: 72px;
}

.form-header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.form-header-text h2 {
    font-size: 27px;
    font-weight: 700;
    color: #000067;
    line-height: 1.5;
}

.form-header-text p {
    font-size: 16px;
    color: #333;
    letter-spacing: 0.96px;
}

.form-container {
    width: 1000px;
    padding: 72px 40px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.contact-form > .form-group {
    width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.48px;
}

.required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    background: #c50202;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.36px;
}

.form-group input {
    height: 53px;
    padding: 17px 21px;
    border: 2px solid #ebebeb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.48px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0b0c3e;
}

.form-group input::placeholder {
    color: #ccc;
}

.select-wrapper {
    position: relative;
    width: 300px;
}

.select-wrapper select {
    width: 100%;
    height: 53px;
    padding: 0 40px 0 21px;
    border: 2px solid #ebebeb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.48px;
    color: #333;
    background: #fff;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
    line-height: 53px;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #0b0c3e;
}

.select-wrapper i {
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    pointer-events: none;
}

.privacy-check {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.privacy-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-checkbox-label span {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    line-height: 1.5;
}

.privacy-checkbox-label a {
    color: #0B0C3E;
    text-decoration: underline;
    white-space: nowrap;
}

.privacy-checkbox-label a:hover {
    color: #004499;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 72px;
    background: #fcde10;
    border: none;
    border-radius: 6px;
    box-shadow: 0 3px 0 0 #e1c60c;
    font-family: inherit;
    font-size: 21px;
    font-weight: 700;
    color: #0b0c3e;
    letter-spacing: 0.48px;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 #e1c60c;
}

.submit-btn i {
    font-size: 14px;
}

/* Service Section */
.service-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 64px 0;
    background: #fff;
    max-width: 1366px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

section#service h1 {
    font-size: 27px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
}

.section-header h2 {
    font-size: 27px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
}

.section-header p {
    font-size: 16px;
    color: #333;
    letter-spacing: 0.48px;
}

.service-cards {
    display: flex;
    gap: 32px;
    width: 1000px;
}

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 32px;
    background: #f5f5f7;
    border-radius: 6px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
}

.service-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: #0b0c3e;
    text-align: center;
    line-height: 1.5;
}

.service-card img {
    height: 110px;
    width: auto;
}

.service-card p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
    line-height: 1.73;
}

/* Flow Section */
.flow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 64px 0;
    background: #f5f5f7;
    margin: 0 auto;
}

.flow-steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 1000px;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: #0b0c3e;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.step-card img {
    height: 85px;
    width: auto;
}

.step-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: #0b0c3e;
    text-align: center;
    line-height: 1.5;
}

.step-card p {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-align: center;
    line-height: 1.73;
}

.step-arrow {
    color: #000;
    font-size: 16px;
    flex-shrink: 0;
}

.step-arrow-mobile {
    display: none;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 64px 0;
    background: #fff;
    max-width: 1366px;
    margin: 0 auto;
}

.contact-cards {
    display: flex;
    gap: 32px;
    width: 1000px;
}

.contact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 40px;
    background: #fafafb;
    border: 4px solid rgba(11, 12, 62, 0.05);
    border-radius: 6px;
}

.contact-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: #0b0c3e;
    text-align: center;
    line-height: 1.5;
}

.contact-card h3 i {
    font-size: 16px;
    margin-right: 4px;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.phone-number {
    font-size: 40px;
    font-weight: 900;
    color: #0b0c3e;
    line-height: 1.5;
}

.reception-time {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    text-align: center;
    line-height: 1.73;
}

.web-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 40px;
    background: #fcde10;
    border: 1px solid #0b0c3e;
    border-radius: 6px;
    box-shadow: 0 3px 0 0 #0b0c3e;
    font-size: 21px;
    font-weight: 700;
    color: #0b0c3e;
    transition: transform 0.2s;
}

.web-contact-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 #0b0c3e;
}

.web-contact-btn i {
    font-size: 16px;
}

.web-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    text-align: center;
    line-height: 1.73;
}

.notice {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 1000px;
    font-size: 14px;
    color: #666;
}

.notice h4 {
    font-weight: 700;
    letter-spacing: 0.42px;
}

.notice ul {
    list-style: disc;
    padding-left: 21px;
    line-height: 1.73;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 100px 0;
    background: #333;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-align: center;
}

.footer-logo p {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 1.62px;
}

.footer-logo span {
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    font-size: 16px;
    color: #fff;
    line-height: 1.73;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.42px;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-cards,
    .flow-steps,
    .contact-cards,
    .notice {
        width: 90%;
    }
    
    .form-container {
        width: 90%;
    }
    
    .contact-form > .form-group {
        width: 100%;
    }
    
    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav {
        gap: 16px;
    }
    
    .nav-list {
        gap: 16px;
        font-size: 14px;
    }
    
    .header-phone-btn {
        padding: 16px 24px;
        font-size: 18px;
    }
    
    .flow-steps {
        flex-direction: row;
        width: 90%;
    }
    
    .step-arrow-pc {
        display: flex;
    }

    .step-arrow-mobile {
        display: none;
    }
    
    .step-card {
        flex: 1;
    }

}

@media (max-width: 920px) {
    ul.nav-list {
        display: none;
    }

}



@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 24px 16px 12px;
        position: absolute;
        background: transparent;
        top: 0;
    }

    /* Contact page, Company page, and Privacy Policy page header background */
    body:has(.thank-you-section) .header,
    body:has(.company-section) .header,
    body:has(.privacy-section) .header {
        background: #0b0c3e;
    }

    .header-container {
        justify-content: center;
    }

    .logo {
        flex-direction: row;
        gap: 8px;
    }

    .logo i {
        font-size: 20px;
        margin-top: 2px;
        color: #fff;
        flex-shrink: 0;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .logo-title {
        font-size: 16px;
        text-align: center;
        color: #fff;
        font-weight: 500;
        line-height: 1.3;
        white-space: nowrap;
    }

    .logo-subtitle {
        font-size: 12px;
        color: #fff;
        text-align: left;
        line-height: 1.3;
        white-space: nowrap;
        padding-left: 11vw;
    }

    .nav {
        display: none;
    }
    
    .nav-list {
        display: none;
    }

    .header-phone-btn {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 16px 80px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        gap: 1vh;
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        order: 2;
        margin-top: 20px;
    }

    .hero-badge span {
        font-size: 14px;
        padding: 12px 24px;
    }

    .badge-arrow {
        width: 12px;
        height: 12px;
        margin-top: -6px;
    }

    .hero-title {
        font-size: 7vw;
        order: 3;
        line-height: 1.5;
        letter-spacing: 0.84px;
        margin-top: 8px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        order: 4;
        letter-spacing: 0.84px;
        line-height: 1.8;
        margin-top: 8px;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }
    
    /* Phone CTA Bar */
    .phone-cta-bar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-phone-btn {
        font-size: 9vw;
        padding: 1vh 24px;
        width: 100%;
        justify-content: center;
    }
    
    /* Form Section */
    .form-section {
        padding: 32px 16px;
        gap: 24px;
    }

    .form-header {
        width: 100%;
        gap: 12px;
    }

    .form-icon {
        width: 60px;
        height: 54px;
    }

    .form-header-text h2 {
        font-size: 20px;
    }

    .form-header-text p {
        font-size: 14px;
    }
    
    .form-container {
        width: 100%;
        padding: 24px 16px;
    }

    .contact-form {
        gap: 24px;
    }

    .contact-form > .form-group {
        width: 100%;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .select-wrapper select {
        font-size: 14px;
        height: 48px;
        padding: 0 16px;
    }

    .select-wrapper {
        width: 100%;
    }

    .select-wrapper select {
        line-height: 48px;
    }

    .privacy-check {
        margin: 24px 0;
        justify-content: flex-start;
    }

    .privacy-checkbox-label {
        font-size: 14px;
        align-items: flex-start;
        gap: 8px;
    }

    .privacy-checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .privacy-checkbox-label span {
        flex: 1;
        line-height: 1.6;
        display: block;
    }

    .privacy-checkbox-label a {
        white-space: normal;
        word-break: keep-all;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Service Section */
    .service-section {
        padding: 32px 16px;
        gap: 24px;
    }

    .section-header {
        gap: 8px;
    }

    section#service h1 {
        font-size: 5.4vw;
        line-height: 1.4;
    }

    section#service h1 br{
        display: none;
    }

    .section-header h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .section-header p {
        font-size: 14px;
    }
    
    .service-cards {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .service-card {
        padding: 24px 16px;
        gap: 16px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card img {
        height: 80px;
    }

    .service-card p {
        font-size: 14px;
    }
    
    /* Flow Section */
    .flow-section {
        padding: 32px 16px;
        gap: 24px;
    }

    .flow-steps {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .step-arrow-pc {
        display: none;
    }

    .step-arrow-mobile {
        display: flex !important;
        color: #000;
        font-size: 4vw;
        margin: 16px 0;
        align-items: center;
        justify-content: center;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
        padding: 20px 16px;
        gap: 12px;
    }

    .step-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .step-card img {
        height: 60px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    .step-card p {
        font-size: 13px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 32px 16px;
        gap: 24px;
    }
    
    .contact-cards {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .contact-card {
        padding: 24px 16px;
        gap: 16px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card-content {
        gap: 12px;
    }
    
    .phone-number {
        font-size: 24px;
    }

    .reception-time {
        font-size: 14px;
    }

    .web-contact-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }

    .web-description {
        font-size: 14px;
    }
    
    .notice {
        width: 100%;
        font-size: 13px;
    }

    .notice h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .notice ul {
        padding-left: 20px;
    }

    .notice li {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* Footer */
    .footer {
        padding: 48px 16px 160px;
        gap: 24px;
    }

    .footer-logo {
        gap: 12px;
    }

    .footer-logo p {
        font-size: 18px;
    }

    .footer-logo span {
        font-size: 12px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        font-size: 14px;
    }

    .copyright {
        font-size: 12px;
    }
}

/* Thank You Section */
.thank-you-section {
    padding: 120px 0 80px;
    background: #fff;
    min-height: 80vh;
}

.thank-you-container {
    max-width: 800px;
    margin: 24px auto;
    padding: 0 24px;
}

.thank-you-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b0c3e;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.5;
}

.thank-you-content {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.thank-you-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.thank-you-content p:last-child {
    margin-bottom: 0;
}

.thank-you-note {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thank-you-note p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.thank-you-button {
    text-align: center;
}

.back-to-top-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #fcde10;
    border: 1px solid #0b0c3e;
    border-radius: 6px;
    box-shadow: 0 3px 0 0 #0b0c3e;
    font-size: 18px;
    font-weight: 700;
    color: #0b0c3e;
    transition: transform 0.2s;
}

.back-to-top-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 #0b0c3e;
}

.error-messages {
    background: #fee;
    border: 2px solid #c50202;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 32px;
}

.error-messages ul {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
}

.error-messages li {
    color: #c50202;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.error-messages li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 16px 60px;
    }

    .thank-you-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .thank-you-content {
        padding: 24px 16px;
    }

    .thank-you-content p {
        font-size: 14px;
    }

    .thank-you-note {
        padding: 16px;
    }

    .thank-you-note p {
        font-size: 13px;
    }

    .back-to-top-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Company Section */
.company-section {
    padding: 120px 0 80px;
    background: #fff;
    min-height: 80vh;
}

.company-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.company-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b0c3e;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.5;
}

.company-info {
    margin-top: 48px;
}

.info-item {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #ebebeb;
}

.info-item:first-child {
    border-top: 1px solid #ebebeb;
}

.info-label {
    width: 200px;
    font-size: 16px;
    font-weight: 700;
    color: #0b0c3e;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .company-section {
        padding: 100px 16px 60px;
    }

    .company-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .info-item {
        flex-direction: column;
        padding: 20px 0;
    }

    .info-label {
        width: 100%;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .info-value {
        font-size: 14px;
    }
}

/* Privacy Policy Section */
.privacy-section {
    padding: 120px 0 80px;
    background: #fff;
    min-height: 80vh;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.privacy-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b0c3e;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.5;
}

.privacy-content {
    margin-top: 48px;
}

.privacy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0b0c3e;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content .policy-item {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.privacy-content .policy-item strong {
    font-weight: 700;
    color: #0b0c3e;
}

.privacy-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b0c3e;
    margin-top: 32px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.privacy-content ul,
.privacy-content ol {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
    padding-left: 0;
    list-style: none;
}

.privacy-content ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.privacy-content ul li:last-child {
    margin-bottom: 0;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content li:last-child {
    margin-bottom: 0;
}

.privacy-content .contact-info {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
    line-height: 1.8;
}

.privacy-content .contact-info p {
    margin-bottom: 8px;
}

.privacy-content .contact-info p:last-child {
    margin-bottom: 0;
}

.privacy-content .opt-out-links {
    list-style: none;
    padding-left: 0;
}

.privacy-content .opt-out-links li {
    margin-bottom: 16px;
    padding-left: 0;
}

.privacy-content .opt-out-links a {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.privacy-content .opt-out-links a:hover {
    color: #004499;
}

.privacy-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b0c3e;
    margin-top: 24px;
    margin-bottom: 12px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 16px 60px;
    }

    .privacy-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .privacy-content h2 {
        font-size: 20px;
        margin-top: 32px;
    }

    .privacy-content h3 {
        font-size: 18px;
        margin-top: 24px;
    }

    .privacy-content p,
    .privacy-content ul,
    .privacy-content ol {
        font-size: 14px;
    }

    .privacy-content .contact-info {
        padding: 16px;
    }

    .privacy-content h4 {
        font-size: 16px;
        margin-top: 20px;
    }
}


@media (min-width: 768px) {
.form-header-text p br{
    display: none;
}


.section-header p br{ display: none; }

}