	nav{
display:flex;
justify-content:space-between;
align-items:center;
}
	.nav-logo img{
		height:75px;
		border-radius:50%;
}
	.nav-logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

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

.logo-top{
    font-weight:700;
    font-size:18px;
    color:#ffffff;
}

.logo-bottom{
    font-size:18px;
    color:#ffffff;
}
	.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 40px;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    color: white;
    transition: 0.3s;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.4);
}

.lang-btn.active {
    background: #F97316;
    color: white;
}
@media (max-width: 768px) {

    nav {
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;        /* ссылки в ряд */
        flex-wrap: wrap;            /* если не помещаются — переносятся */
        gap: 15px;
    }

    .lang-switcher {
        margin-left: 0;
    }

    .lang-btn {
        font-size: 13px;
        padding: 5px 10px;
    }
	.hero-arrow hero-prev{
		margin-top:15px;
	}
	.hero-arrow hero-next{
		margin-top:15px
	}
	.main{
 		margin-left:-760px;
	}
	.faq-header{
	}
	.container-faq{
	
	}
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            overflow-x: hidden;
        }
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
	margin-top:80px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 50;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 10px;
}

.hero-next {
    right: 10px;
}

     .hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-image 0.6s ease-in-out;
}

	

        nav {
            display: flex;
            padding: 2rem 5%;
            position: relative;
            z-index: 100;

        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        .nav-links a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 5% 6rem 5%;
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            min-height: 600px;
        }

        .hero-left {
            max-width: 700px;
            z-index: 10;
            margin-bottom: 2rem;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .subtitle {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 600px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #F97316;
            padding: 3px 5px;
            border-radius: 45px;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 3rem;
			margin-top:23px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .cta-text {
            padding: 10px 25px;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1rem;
			
			
        }

        .cta-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: #FFFFFF;
            border-radius: 50%;
        }

        .cta-icon-circle svg {
            width: 20px;
            height: 20px;
        }

        .cards-wrapper {
            position: absolute;
            right: 5%;
            bottom: 15%;
            width: 500px;
            height: 180px;
            overflow: visible;
            z-index: 20;
        }

        .cards-container {
            display: flex;
            gap: 20px;
            animation: carousel-scroll 12s linear infinite;
            width: 300px;
            overflow: visible;
        }

        .cards-container:hover {
            animation-play-state: paused;
        }

        @keyframes carousel-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-510px);
            }
        }

        .info-card {
            width: 250px;
            height: 190px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(0, 0, 0, 0.32) 120.7%);
            backdrop-filter: blur(1.27px);
            border-radius: 19px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

        .info-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .card-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            color: white;
        }

        .card-divider {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.6);
            margin: 0.5rem 0;
        }

        .card-label {
            font-size: 0.85rem;
            opacity: 0.95;
            line-height: 1.3;
            color: white;
        }

        .benefits {
            background: white;
            padding: 6rem 5%;
            border-radius: 40px 40px 0 0;
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }

        .benefits h2 {
            font-family: 'SF Pro Display', -apple-system, sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 4rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .benefit-card {
            text-align: left;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
        }

        .benefit-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: #1a1a1a;
        }

        .benefit-description {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
        }

        .congress-info {
            padding: 6rem 5%;
            background: #ffffff;
        }

	.btn-text-za2{
	color:#ff610a;
	}
        .congress-image-card {
            position: relative;
            width: 100%;
            max-width: 1400px;
            height: 570px;
            margin: 0 auto;
            background: url('https://cdn1.kdt.kz/files/sites/1520847865715927/files/congress-bg.png?_t=1770879183');
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .congress-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            max-width: 900px;
            text-align: center;
        }

        .congress-main-title {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 2rem;
            line-height: 1.4;
            color: #1a1a1a;
        }

        .congress-subtitle {
            font-family: 'SF Pro Display', -apple-system, sans-serif;
            font-weight: 500;
            font-size: 1.25rem;
            line-height: 1.6;
            color: #05073C;
        }

        .congress-apply-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 3px 5px;
            background: #F97316;
            border-radius: 45px;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .congress-apply-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
        }
	 .congress-apply-btn2 {
            display: flex;
            align-items: center;
            gap: 8px;
		 width:250px;
		 margin-left:90px;
            padding: 3px 5px;
            background: #ffffff;
            border-radius: 45px;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .congress-apply-btn2:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-text {
            padding: 10px 25px;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1rem;
        }
	
        .btn-text2 {
           padding: 10px 25px;
           color: #0c0c0c;
           font-weight: 700;
           font-size: 1rem;
        }

        .btn-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: #FFFFFF;
            border-radius: 50%;
        }

        .btn-icon-circle svg {
            width: 20px;
            height: 20px;
        }

        .countdown-section {
            padding: 5rem 5%;
            background: white;
        }

        .countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 7rem;
            max-width: 1400px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.2rem;
        }

        .countdown-circle {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
            position: relative;
        }

        .countdown-label {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
        }

         .requirements-section {
            padding: 6rem 5%;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .requirements-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            color: #05073C;
            margin-bottom: 4rem;
        }

        .requirements-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
            position: relative;
        }

        .map-container {
            position: absolute;
            width: 1082px;
            height: 600px;
            left: -342px;
            border-radius: 0;
            overflow: visible;
        }

        .map-background {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .map-marker {
            position: absolute;
            width: 16px;
            height: 16px;
            background: #3B82F6;
            border: 3px solid #ffffff;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .map-marker:hover {
            transform: translate(-50%, -50%) scale(1.3);
        }

        .map-marker.pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(59, 130, 246, 0.8);
            }
        }

        .marker-kz {
            top: 36%;
            left: 45%;
        }

        .marker-dubai {
            top: 52%;
            left: 43%;
        }

        .marker-bali {
            top: 68%;
            left: 58%;
            background: #ffffff;
            border: 3px solid #3B82F6;
        }

        .marker-australia {
            top: 78%;
            left: 62%;
            background: #E8EDF2;
            border: 3px solid #94A3B8;
        }

        .requirements-cards {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            z-index: 10;
        }

        .requirement-card {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            padding: 20px;
            gap: 20px;
            background: #FFFFFF;
            box-shadow: 2px 2px 6.6px rgba(0, 0, 0, 0.08);
            border-radius: 10px;
            max-width: 550px;
        }

        .card-image {
            width: 160px;
            height: 140px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .card-content {
            flex: 1;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #05073C;
            margin-bottom: 0.8rem;
        }

        .card-description {
            font-size: 1rem;
            color: #475569;
            line-height: 1.6;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(59, 130, 246, 0.8);
            }
        }

        .marker-kz {
            top: 36%;
            left: 55%;
        }

        .marker-dubai {
            top: 52%;
            left: 52%;
        }

        .marker-bali {
            top: 68%;
            left: 70%;
            background: #ffffff;
            border: 3px solid #3B82F6;
        }

        .marker-australia {
            top: 78%;
            left: 75%;
            background: #E8EDF2;
            border: 3px solid #94A3B8;
        }

        .requirements-cards {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-left: 180px;
        }

        .requirement-card {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            padding: 20px;
            gap: 20px;
            background: #FFFFFF;
            box-shadow: 2px 2px 6.6px rgba(0, 0, 0, 0.08);
            border-radius: 10px;
        }

        .card-image {
            width: 160px;
            height: 140px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .card-content {
            flex: 1;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #05073C;
            margin-bottom: 0.8rem;
        }

        .card-description {
            font-size: 1rem;
            color: #475569;
            line-height: 1.6;
        }
        /* Roadmap Section Styles */
.roadmap-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 1600px;
}

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

.roadmap-title {
    font-family: 'Island Moments',cursive;
font-weight: 400;
font-style: Regular;
font-size: 32px;
color: #F97316;
line-height: 100%;
letter-spacing: 0%;

}

.section-heading {
    font-family: 'Arial', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1f3d;
    margin: 0 0 50px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
    margin-left: 0;
    width: 1500px;
    margin-bottom: 0;
}

.step-card {
    box-sizing: border-box;
    position: relative;
    height: 200px;
    background: #FFFFFF;
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #F97316;
    border-radius: 16px;
    padding: 10px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(241, 124, 58, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #f17c3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1f3d;
    margin: 0 0 10px 0;
}

.step-description {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #808080;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section Styles */
.faq-section {
   
    background: url('https://cdn1.kdt.kz/files/sites/1520847865715927/files/bg.png?_t=1770878988');
    padding: 80px 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.faq-header{
	width:500px;
	margin-left:100px;
	}
.container-faq {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-content {
    padding-right: 20px;
}
	

.faq-title {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.faq-description {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    padding: 22px 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-bullet {
    width: 24px;
    height: 24px;
    background-color: #f17c3a;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-text {
    font-family: 'Inter',sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 24px;
letter-spacing: 0%;

}

.faq-arrow {
    font-size: 28px;
    color: #f17c3a;
    font-weight: 300;
    flex-shrink: 0;
}
@media (max-width: 968px) {
    .container-faq {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .roadmap-title {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
		max-width:350px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-section {
        padding: 60px 20px;
		display:none;
    }
	.logo-text{
	display:none;
	}
}

@media (max-width: 480px) {
    .roadmap-section {
        padding: 40px 15px;
		max-width:fit-content;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-description {
        font-size: 14px;
    }
    
    .faq-text {
        font-size: 14px;
    }
}

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .cards-wrapper {
                position: relative;
                right: auto;
                bottom: auto;
                width: 100%;
                margin-top: 2rem;
                height: auto;
                overflow-x: auto;
            }

            .cards-container {
                animation: none;
            }

            .info-card {
                width: 250px;
            }

            .countdown {
                gap: 2rem;
            }

            .countdown-circle {
                width: 140px;
                height: 140px;
                font-size: 2.5rem;
            }

            .congress-main-title {
                font-size: 1.5rem;
            }

            .requirements-container {
                grid-template-columns: 1fr;
                gap: 3rem;
				margin-left:-200px;
            }

            .requirements-title {
                font-size: 2rem;
                margin-bottom: 3rem;
            }

            .requirement-card {
                flex-direction: column;
            }

            .card-image {
                width: 100%;
                height: 200px;
            }

            .map-container {
                display:none;
            }
			.requirement-cards {
                margin-left:-200px;
            }
			
        }
	.map-cart{
			width:1080px;
			height:600px;	
			}
        /* Contact Section Styles */
.contact-section {
    background: linear-gradient(180deg, #D1D5DB 0%, #E5E7EB 100%);
    padding: 60px 20px;
    position: relative;
    margin-top: 100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.contact-title {
   font-family: 'SF Pro Display',sans-serif;
font-weight: 500;
font-style: Medium;
font-size: 24px;
line-height: 100%;
letter-spacing: 0px;
text-align: center;

}

.contact-form {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input {
    width: 380px;
    height: 72px;
    background: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 0 80px 0 30px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #1A1F3D;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-input::placeholder {
    color: #9CA3AF;
}

.contact-button {
    position: absolute;
    right: 8px;
    width: 56px;
    height: 56px;
    background: #0081FE;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
    background: #0284C7;
    transform: scale(1.05);
}

.contact-button:active {
    transform: scale(0.95);
}

/* Footer Styles */
.footer {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-overlay {
    position: absolute;
    width: 100%;
    height: 180px;
    left: 0;
    top: 0;
 
    opacity: 0.1;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
}

  footer {
    background: #ECEEF1;
    padding: 60px 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer-nav {
    display: flex;
    gap: 48px;
    list-style: none;
  }

  .footer-nav a {
    font-size: 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
  }

  .footer-nav a:hover { color: #E8710A; }

.footer-link {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1F3D;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #F97316;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover svg path {
    stroke: #F97316;
}

.footer-copyright {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-title {
        font-size: 24px;
        text-align: center;
    }
    
    .contact-input {
        width: 100%;
        max-width: 380px;
    }
    
    .footer-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-input {
        height: 60px;
        font-size: 14px;
        padding: 0 70px 0 20px;
    }
    
    .contact-button {
        width: 48px;
        height: 48px;
    }
    
    .contact-button svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-social {
        gap: 16px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
}
	
main { flex: 1; padding: 24px 60px 80px; max-width: 760px; margin-left: 100px; }
h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.4px; }
.subtitle { font-size: 1rem; color: #333; line-height: 1.55; margin-bottom: 40px; }
.field { margin-bottom: 18px; }
label { display: block; font-size: 0.92rem; font-weight: 600; margin-bottom: 7px; }
input[type="text"], input[type="tel"], input[type="email"] {
  display: flex; width: 100%; padding: 17px 23px; border: 1.5px solid #76767C; border-radius: 18px; font-size: 0.97rem; font-family: inherit; color: #1a1a1a; background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input::placeholder { color: #aaa; font-weight: 400; }
input:focus { border-color: #f07c00; box-shadow: 0 0 0 3px rgba(240,124,0,0.12); }

.congress-apply-btn { display: flex; align-items: center; gap: 8px; width: 225px; padding: 3px 5px; background: #F97316; border-radius: 45px; margin-top: 25px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; cursor:pointer;}
.congress-apply-btn:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(249,115,22,0.3); }
.btn-text { padding: 15px 25px; color: #fff; font-weight: 600; font-size: 1rem; }
.btn-icon-circle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: #fff; border-radius: 50%; }
.btn-icon-circle svg { width: 20px; height: 20px; }
	.breadcrumbs { display: flex; align-items: center; gap: 8px; padding: 4px 60px 4px 160px; flex-wrap: wrap; } .breadcrumbs a { text-decoration: none; color: #76767C; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; } .breadcrumbs a:hover { color: #f07c00; } .breadcrumb-sep { color: #bbb; font-size: 0.85rem; } .breadcrumb-current { color: #1a1a1a; font-size: 0.85rem; font-weight: 600; }
	footer { background: #f0f1f3; padding: 40px 60px 30px; display: flex; flex-direction: column; align-items: center; gap: 20px; } .footer-nav { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; } .footer-nav a { text-decoration: none; color: #444; font-size: 0.88rem; font-weight: 600; transition: color 0.2s; } .footer-nav a:hover { color: #f07c00; } .footer-socials { display: flex; gap: 20px; margin-top: 40px; align-items: center; } .footer-socials a { color: #555; text-decoration: none; transition: color 0.2s; } .footer-socials a:hover { color: #1a1a1a; } .footer-socials svg { width: 18px; height: 18px; fill: currentColor; } .footer-copy { font-size: 0.78rem; color: #999; }

#formMessage { display:none; max-width:760px; margin:20px auto; padding:20px; border-radius:16px; background:#F97316; color:#fff; text-align:center; font-weight:600; font-size:1rem; }