* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.navbar {
	position: sticky;
	top: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo-icon {
	width: 32px;
	height: 32px;
	color: #2563eb;
}

.logo-text {
	font-size: 20px;
	font-weight: 600;
	color: #111;
}

.nav-menu {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-link {
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #e09900;
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background-color: #374151;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
	position: relative;
	width: 100%;
	height: 65vh;
	background-image: url('/assets/img/banner.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.hero-title {
	font-size: 80px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 24px;
	max-width: 700px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-icon {
	width: 20px;
	height: 20px;
}

.btn-primary {
	background-color: #ffbb00;
	color: #000000;
}

.btn-primary:hover {
	background-color: #e09900;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

.btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.about-section {
	padding: 80px 0;
	background-color: #f9fafb;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
	align-items: center;
}

.about-image-wrapper {
	position: relative;
}

.about-image {
	position: relative;
	height: 500px;
	border-radius: 16px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shape {
	position: absolute;
	border-radius: 50%;
	background-color: #ebb625;
}

.shape-1 {
	top: -24px;
	left: -24px;
	width: 128px;
	height: 128px;
	opacity: 0.2;
}

.shape-2 {
	bottom: -32px;
	right: -32px;
	width: 160px;
	height: 160px;
	opacity: 0.1;
}

.stats-card {
	position: absolute;
	bottom: 32px;
	left: 32px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 280px;
}

.stats-icon {
	background-color: #dbeafe;
	border-radius: 50%;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stats-icon svg {
	width: 24px;
	height: 24px;
	color: #2563eb;
}

.stats-number {
	font-size: 24px;
	font-weight: 700;
	color: #111;
}

.stats-label {
	font-size: 14px;
	color: #6b7280;
}

.about-content {
	padding: 0 24px;
}

.section-badge {
	display: inline-block;
	background-color: #dbeafe;
	color: #2563eb;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin-bottom: 24px;
	line-height: 1.2;
}

.section-title.center {
	text-align: center;
	margin-bottom: 48px;
}

.section-text {
	font-size: 16px;
	color: #374151;
	margin-bottom: 24px;
	line-height: 1.8;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.feature {
	display: flex;
	gap: 12px;
}

.feature-icon {
	background-color: #dbeafe;
	border-radius: 8px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 4px;
	width: 36px;
	height: 36px;
}

.feature-icon svg {
	width: 20px;
	height: 20px;
	color: #2563eb;
	flex-shrink: 0;
}

.feature-title {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	margin-bottom: 4px;
}

.feature-text {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
}

.jobs-section {
	padding: 80px 0;
	background-color: #fff;
}

.jobs-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.job-card {
	background-color: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.job-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: #2563eb;
}

.job-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.job-title {
	font-size: 20px;
	font-weight: 600;
	color: #111;
	margin-bottom: 12px;
}

.job-description {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 20px;
	line-height: 1.6;
	flex-grow: 1;
}

.job-link {
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	margin-top: 25px;
}

.job-link:hover {
	text-decoration: underline;
}

.accordion {
  text-align: left;
  margin-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: #f9fafb;
}

.accordion-item.active .accordion-header {
  background-color: #f3f4f6;
  color: #111;
}

.accordion-header::after {
  content: "＋";
  font-size: 18px;
  transition: transform 0.2s ease;
}

.accordion-item.active .accordion-header::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #fafafa;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 1s ease,
    padding 1s ease,
    opacity 0.8s ease,
    transform 1s ease;
}

.accordion-item.active .accordion-content {
  max-height: 800px;
  padding: 16px;
  opacity: 1;
  transform: translateY(0);
}

.accordion-content ul {
  margin: 0;
  padding-left: 18px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.accordion-content ul li {
  margin-bottom: 6px;
}

.accordion-content p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}


.meeting-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('/assets/img/backgroundContact.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.meeting-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.meeting-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.meeting-text {
  flex: 1;
  min-width: 260px;
}

.meeting-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.meeting-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
}

.meeting-button {
  flex-shrink: 0;
}

.btn-meeting {
  display: inline-block;
  background-color: #ffbb00;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.btn-meeting:hover {
  background-color: #e09900;
  color: #111;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .meeting-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .meeting-text {
    text-align: center;
  }

  .meeting-title {
    font-size: 36px;
  }

  .btn-meeting {
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .meeting-title {
    font-size: 28px;
  }

  .meeting-subtitle {
    font-size: 16px;
  }

  .btn-meeting {
    width: 100%;
    max-width: 260px;
  }
}


.contact-section {
	padding: 80px 0;
	background-color: #f9fafb;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 64px;
}

.contact-info {
	padding-right: 24px;
}

.contact-details {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-item {
	display: flex;
	gap: 16px;
}

.contact-icon {
	width: 24px;
	height: 24px;
	color: #2563eb;
	flex-shrink: 0;
	margin-top: 4px;
}

.contact-label {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 4px;
}

.contact-value {
	font-size: 16px;
	font-weight: 500;
	color: #111;
}

.contact-form {
	background-color: #fff;
	padding: 48px;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.form-group {
	margin-bottom: 24px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	margin-bottom: 8px;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
	resize: vertical;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: #374151;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	margin-top: 4px;
	cursor: pointer;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.form-input[type="file"] {
	border: 1px solid #d1d5db;
	border-radius: 6px;
	padding: 10px;
	font-size: 14px;
	width: 100%;
	cursor: pointer;
}

.form-input[type="file"]::-webkit-file-upload-button {
	background: #2563eb;
	color: #fff;
	border: none;
	padding: 8px 14px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.form-input[type="file"]::-webkit-file-upload-button:hover {
	background: #1d4ed8;
}

.footer {
  background-color: #ffffff;
  color: #111;
  padding-top: 48px;
  font-size: 15px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  padding: 32px 20px;
}

.footer-logo {
  max-width: 280px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 12px;
}

.footer-logo p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e09900;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  color: #ffbb00;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #fef0db;
  color: #111;
  transform: translateY(-2px);
}

.footer-socials a svg {
	width: 1em;
	height: 1em;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  text-align: center;
  padding: 16px 0;
  background-color: #ffffff;
  color: #333;
  font-size: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-bottom a {
	color: orange;
}

@media (max-width: 768px) {
  .footer-content {
	flex-direction: column;
	text-align: center;
  }
  .footer-links {
	justify-content: center;
  }
  .footer-socials {
	justify-content: center;
  }
  .footer-content {
	padding: 15px 20px !important;
  }
}


@media (max-width: 1024px) {
	.hero-title {
		font-size: 64px;
	}

	.about-grid {
		grid-template-columns: 1fr;
	}

	.jobs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.about-section {
		padding: 60px 0;
	}

	.jobs-section {
		padding: 60px 0;
	}

	.contact-section {
		padding: 60px 0;
	}
}

@media (max-width: 768px) {
	.mobile-menu-btn {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 68px;
		left: 0;
		right: 0;
		background-color: #fff;
		flex-direction: column;
		gap: 0;
		padding: 24px;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		transform: translateY(-150%);
		opacity: 0;
		transition: all 0.3s ease;
		pointer-events: none;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-link {
		padding: 12px 0;
		width: 100%;
		text-align: center;
		font-size: 16px;
		border-bottom: 1px solid #e5e7eb;
	}

	.nav-link:last-child {
		border-bottom: none;
	}

	.hero {
		height: 500px;
	}

	.hero-title {
		font-size: 48px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
		justify-content: center;
	}

	.section-title {
		font-size: 28px;
	}

	.meeting-title {
		font-size: 32px;
	}

	.meeting-subtitle {
		font-size: 16px;
	}

	.jobs-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.about-image {
		height: 400px;
	}

	.stats-card {
		max-width: 240px;
	}

	.about-section {
		padding: 60px 0;
	}

	.jobs-section {
		padding: 60px 0;
	}

	.contact-section {
		padding: 60px 0;
	}

	.meeting-banner {
		height: 300px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 32px 24px;
	}

	.container {
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.logo-text {
		font-size: 18px;
	}

	.logo-icon {
		width: 28px;
		height: 28px;
	}

	.hero {
		height: 450px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 15px;
	}

	.hero-content {
		padding: 0 20px;
	}

	.section-title {
		font-size: 24px;
	}

	.meeting-title {
		font-size: 24px;
	}

	.meeting-subtitle {
		font-size: 15px;
	}

	.meeting-banner {
		height: 250px;
	}

	.btn {
		font-size: 15px;
		padding: 10px 20px;
	}

	.contact-form {
		padding: 24px 20px;
	}

	.container {
		padding: 0 16px;
	}

	.about-section,
	.jobs-section,
	.contact-section {
		padding: 40px 0;
	}
}

img {
	max-width: 100%;
	height: auto;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}



.thankyou-section { padding:80px 24px; text-align:center; }
.thankyou-section h2 { font-size:36px; margin-bottom:24px; }
.thankyou-section p { font-size:18px; margin-bottom:32px; }
.thankyou-image { max-width:400px; margin:0 auto 32px; }
.hero2 {
    position: relative;
    width:100%;
    height:70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('/assets/img/banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 24px;
}
.hero2 h1 { font-size:48px; color:#fff; margin-bottom:16px; }
.hero2 p { font-size:20px; color:#fff; margin-bottom:32px; }
.hero2 .btn-primary { display:inline-block; background-color:#ffbb00; color:#111; font-weight:600; padding:14px 32px; border-radius:20px; transition:all 0.3s; text-decoration: none; }
.hero2 .btn-primary:hover { background-color:#e09900; transform:translateY(-2px); }

.polityka {
	line-height: 1.6;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}
.polityka h1, .polityka h2 {
	color: #2c3e50;
}
.polityka h1 {
	font-size: 2em;
	border-bottom: 2px solid #2c3e50;
	padding-bottom: 10px;
}
.polityka h2 {
	font-size: 1.5em;
	margin-top: 20px;
}
.polityka p {
	margin: 10px 0;
}
.polityka ul {
	list-style-type: disc;
	margin: 10px 0 10px 20px;
}
.polityka li {
	list-style: disc;
}
.polityka a {
	color: #2980b9;
	text-decoration: none;
}
.polityka a:hover {
	text-decoration: underline;
}
.polityka .section {
	margin-bottom: 20px;
}