html {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-width: 100vw;
}


A.fi:link    {color:#ffffff; margin-bottom: 8px; line-height: 1.8; font-weight: 300;text-decoration:none;font-size:14px; opacity: 0.9;} 
A.fi:visited {color:#ffffff; margin-bottom: 8px; line-height: 1.8; font-weight: 300;text-decoration:none;font-size:14px;opacity: 0.9;} 
A.fi:active  {color:#ffffff; margin-bottom: 8px; line-height: 1.8; font-weight: 300;text-decoration:none;font-size:14px;opacity: 0.9;} 
A.fi:hover   {color:#ffffff; margin-bottom: 8px; line-height: 1.8; font-weight: 300; text-decoration:none;font-size:14px;opacity: 0.9;}


/* 헤더 */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    height: 98px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.header-content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: block;
}

.logo img {
    width: 260px;
    height: 42px;
    object-fit: contain;
}

nav {
    display: flex;
}

.header-phone-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 800;
    color: #3d1520;
    text-decoration: none;
    transition: background 0.3s;
	margin-top: -5px;
}

.header-phone-btn:hover {
	background: #3d1520;
	color: white;

}

/* 히어로 슬라이더 */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 98px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.hero-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.previous {
    transform: translateX(0);
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    width: 90%;
    max-width: 90%;
    padding: 0 0 0 5%;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.5s forwards;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0;
    animation: slideUp 1s ease-out 0.8s forwards;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: #000;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    animation: slideUp 1s ease-out 1.1s forwards;
    transition: background 0.3s;
}

.hero-cta:hover {
    background: #333;
}

.hero-cta::after {
    content: '→';
    font-size: 20px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 슬라이더 네비게이션 */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: transparent;
    border: none;
    color: white;
    font-size: 80px;
    font-weight: 100;
    padding: 20px;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0.6;
    line-height: 1;
}

.slider-nav:hover {
    opacity: 1;
}

.slider-nav.prev {
    left: 40px;
}

.slider-nav.next {
    right: 40px;
}

/* 슬라이더 인디케이터 */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0;
}

.indicator {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
}

.slider-counter {
    color: white;
    font-size: 14px;
    font-weight: 300;
    margin-left: 15px;
    opacity: 0.8;
}

/* 브랜드 섹션 */
.brand-section {
    padding: 130px 0;
    background: #fff;
}

.brand-header {
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.section-title {
    font-family: 'Marcellus', serif;
    font-size: 38px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.brand-slider-container {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
}

.brand-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.brand-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 50px;
}

.brand-card {
    flex: 0 0 calc(25% - 37.5px);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.brand-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-card.visible:nth-child(1) {
    transition-delay: 0s;
}

.brand-card.visible:nth-child(2) {
    transition-delay: 0.15s;
}

.brand-card.visible:nth-child(3) {
    transition-delay: 0.3s;
}

.brand-card.visible:nth-child(4) {
    transition-delay: 0.45s;
}

.brand-card.visible:nth-child(5) {
    transition-delay: 0.6s;
}

.brand-card-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 650px;
/*    background: #000;*/
}

.brand-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.brand-card:hover .brand-card-inner img {
    transform: scale(1.15);
/*    opacity: 0.7;*/
}

.brand-card-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.brand-card:hover .brand-card-content {
    opacity: 1;
}

.brand-card:hover .brand-card-inner img {
    transform: scale(1.15);
/*    filter: brightness(0.7);*/
}

.brand-card-title {
    color: white;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.brand-card-desc {
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.5;
}

.brand-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 2px;
}

.brand-card-link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.brand-card-line {
    height: 2px;
    background: white;
}

.brand-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 80px;
    font-weight: 100;
    width: auto;
    height: auto;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.6;
}

.brand-nav:hover {
    color: #666;
    opacity: 1;
}

.brand-nav.prev {
    left: -100px;
}

.brand-nav.next {
    right: -100px;
}


a.brand-card-inner {
    display: block;
}


/* 콘텐츠 섹션 */
.content-section {
    padding: 70px 0;
    background: #f5f5f7;
    border-bottom: 1px solid #e5e5e5;
}

.content-section:first-of-type {
    padding-top: 70px;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-spacer {
    height: 70px;
    background: #f5f5f7;
}

@media (max-width: 768px) {
    .content-spacer {
        height: 40px;
    }
}

.content-wrapper {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.content-section:nth-of-type(even) .content-text {
    text-align: right;
}

.content-section:nth-of-type(even) .content-text-line {
    margin-left: auto;
    margin-right: 0;
}

.content-section:nth-of-type(even) .content-indicators {
    justify-content: flex-end;
}

@media (min-width: 2560px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .content-section:nth-of-type(odd) .content-wrapper {
        grid-template-columns: 65fr 35fr;
    }

    .content-section:nth-of-type(even) .content-wrapper {
        grid-template-columns: 35fr 65fr;
    }
}

.content-image-container {
    position: relative;
    width: 100%;
}

.content-image-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.content-section.visible .content-image-slider {
    opacity: 1;
    transform: translateX(0);
}

.content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.content-slide.active {
    opacity: 1;
}

.content-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.content-section.visible .content-text {
    opacity: 1;
    transform: translateY(0);
}

.content-text-line {
    width: 70px;
    height: 1px;
    background: #000;
    margin-bottom: 25px;
}

.content-indicators {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.content-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.content-indicator.active {
    width: 40px;
    border-radius: 8px;
    background: #999;
}

.content-text h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.4;
}

.content-text h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.4;
}

.content-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #999;
    margin-bottom: 25px;
    white-space: pre-line;
}

.content-text-info {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
}

/* 정보 테이블 섹션 */
.info-section {
    padding: 150px 0;
    background: white;
}

.info-wrapper {
    max-width: 60%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .info-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    .info-section {
    padding: 90px 0;
    background: white;
}
}

.info-logo {
    text-align: center;
    margin-bottom: 5px;
}

.info-logo img {
    width: auto;
    height: 50px;
}

@media (max-width: 768px) {
    .info-logo img {
    width: auto;
    height: 30px;
}
}


.info-subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
}

.info-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 35px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #000;
    flex-shrink: 0;
}

.info-table {
	text-align: center;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    font-size: 14px;
}

.info-table th,
.info-table td {
    text-align: center;
    padding: 10px 12px;
    text-align: left;
    border: 2px solid #ffffff;
}

.info-table th {
     text-align: center;
    background: #e5dad7;
    font-weight: 600;
    color: #333;
}

.info-table td {
    text-align: center;
    background: #efe9e7;
    color: #666;
    line-height: 1.6;
}

.info-table td strong {
    text-align: center;
    color: #000;
    font-weight: 600;
}

.info-note {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 브로셔 신청 섹션 */
.brochure-section {
    padding: 160px 0;
    background: #f5f5f5;
}

.brochure-wrapper {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: center;
}

.brochure-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 20px;
}

.brochure-text p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-grid input {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    background: white;
    transition: border-color 0.3s;
}

.form-grid input:focus {
    outline: none;
    border-color: #8b1538;
}

.form-grid input::placeholder {
    color: #999;
}

.form-checkbox {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    cursor: pointer;
}

.brochure-btn {
    width: 100%;
    padding: 18px;
    background: #8b1538;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Pretendard', sans-serif;
}

.brochure-btn:hover {
    background: #6d1129;
}

@media (max-width: 768px) {
    .brochure-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}


/* CTA 섹션 */
.cta-section {
    position: relative;
    padding: 200px 0;
    background-image: url('img/intro_b.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.cta-logo {
    margin-bottom: 15px;
}

.cta-logo img {
    width: 265px;
    height: auto;
}

.cta-logo-text {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 60px;
    font-family: 'Marcellus', serif;
}

.cta-main-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 60px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-contact {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
	text-decoration:none;
}



A.cc:link    {color:#ffffff; letter-spacing: 1px; font-weight: 700;text-decoration:none;font-size:30px; } 
A.cc:visited {color:#ffffff; letter-spacing: 1px; font-weight: 700;text-decoration:none;font-size:30px;} 
A.cc:active  {color:#ffffff; letter-spacing: 1px; font-weight: 700;text-decoration:none;font-size:30px;} 
A.cc:hover   {color:#ffffff; letter-spacing: 1px; font-weight: 700; text-decoration:none;font-size:30px;}


/* 푸터 */
footer {
    background: #822c41;
    color: #fff;
    padding: 50px 0 0 0;
}

.footer-wrapper {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.footer-nav {
    font-size: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

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

.footer-nav span {
    opacity: 0.6;
}

.footer-phone-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #3d1520;
    border-radius: 30px;
    font-size: 16px;
    margin-left: auto;
}

.footer-phone-btn:hover {
    background: #2d0f18;
}

.footer-info  p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: 300;
	text-decoration:none;
}





.footer-right {
    flex-shrink: 0;
}

.footer-right img {
    width: 150px;
    height: auto;
}

.footer-bottom {
    padding: 25px 0;
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* 탑 버튼 */
.top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-button.show {
    opacity: 1;
    visibility: visible;
}

.top-button:hover {
    background: #333;

}

.top-button::before {
    content: '↑';
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
}

.top-button:hover::before {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-phone-btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer-right img {
        width: 150px;
    }
}

/* 반응형 */
@media (max-width: 1024px) {
    .brand-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    header {
        background: none !important;
        position: absolute !important;
        width: 100%;
        z-index: 1000;
        box-shadow: none !important;
        padding: 15px 0;
        height: auto !important;
    }

    .header-content {
        padding: 0;
        background: none !important;
        justify-content: space-between;
        width: 100%;
    }

    .logo {
        margin-right: auto;
    }

    nav {
        margin-left: auto;
		
    }

    .header-phone-btn {
		 
        display: block;
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 0px;
        white-space: nowrap;      
        margin-top: -10px;
    }




    .slider-indicators {
        left: 10%;
        transform: translateX(0);
    }

    .hero-content {
        padding: 0 5%;
    }

    .hero-slider {
        height: 70vh;
        min-height: 600px;
        margin-top: 0 !important;
    }

    .slider-nav {
        display: none;
    }

    .logo img {
        content: url('img/w_logo.png');
        filter: none !important;
        width: 110px !important;
        height: 30px !important;
        object-fit: contain;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 7px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .hero-cta {
        padding: 0;
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        font-size: 13px;
        padding: 4px 10px;
        margin-top: 10px;
    }

    .slider-nav {
        padding: 10px 15px;
        font-size: 20px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .brand-section {
        padding: 80px 0;
    }

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

    .brand-header {
        flex-direction: column;
        gap: 5px;
        padding: 0;
        margin-bottom: 15px;
    }

    .brand-slider-container {
        padding: 0;
    }

    .brand-card {
        flex: 0 0 calc(50% - 10px);
    }

    .brand-card-inner {
        height: 400px;
    }

    .brand-card-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .brand-card-title {
        font-size: 24px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .content-image-container {
        order: 1;
    }

    .content-text {
        order: 2;
        padding: 0 5%;
        text-align: left !important;
    }

    .content-indicators {
        justify-content: flex-start;
        /* ← 이거 추가 */
    }

    .content-text-line {
        display: none;
    }

    .content-section {
        padding: 30px 0;
    }

    .content-text h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .content-text h4 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .content-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .content-text-info {
        font-size: 15px;
        line-height: 1.6;
    }

    .content-indicators {
        display: none;
    }

    .content-section:nth-child(even) .content-wrapper {
        direction: ltr;
    }

    .info-wrapper {
        max-width: 100%;
        padding: 0 5%;
    }

    .info-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .info-section h3 {
        font-size: 14px;
        margin: 15px 0 5px 0;
        flex-wrap: wrap; /* column 대신 wrap 사용 */
        gap: 0; /* gap 제거 */
    }
    
    .info-section h3::before {
        margin-right: 4px; /* ::before와 텍스트 사이 간격 */
    }
    
    .info-section h3 span {
        width: 100%; /* 다음 줄로 */
        margin-left: 0;
        margin-top: 5px;
        padding-left: 16px; /* ::before(8px) + gap(8px) 만큼 */ text-align: left;
    }

    .info-table {
	text-align: center;
        font-size: 12px;
    }

    .info-table th,
    .info-table td {
	text-align: center;
        padding: 6px 8px;
    }

    .brochure-section {
        padding: 60px 0;
    }

    .brochure-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        padding: 0 5%;
    }

    .brochure-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .brochure-text p {
        font-size: 14px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid input {
        font-size: 16px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-logo img {
        width: 50px;
        height: 50px;
    }

    .cta-logo-text {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-main-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-contact {
        font-size: 20px;
		text-decoration:none;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .footer-left {
      flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .footer-info p {
        line-height: 1.4;
        font-weight: 400;
		text-decoration:none;
    }

    .footer-right {
        display: none;
    }

    .top-button {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .top-button::before {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
}

@media (max-width: 480px) {
    .brand-card {
        flex: 0 0 100%;
    }

	
}