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

:root {
--primary: #0a4d8c;
--secondary: #1e88e5;
--accent: #ff6b35;
--dark: #1a1a1a;
--light: #f5f7fa;
--gray: #5a6c7d;
--white: #ffffff;
--border: #e1e8ed;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--dark);
font-size: 15px;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

header {
background: var(--white);
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
padding: 12px 0;
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary);
}

nav ul {
display: flex;
list-style: none;
gap: 20px;
}

nav a {
text-decoration: none;
color: var(--dark);
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

nav a:hover {
color: var(--primary);
}

.burger {
display: none;
flex-direction: column;
gap: 4px;
cursor: pointer;
}

.burger span {
width: 22px;
height: 2px;
background: var(--dark);
transition: 0.3s;
}

.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 0;
position: relative;
overflow: hidden;
}

.hero-content {
max-width: 1200px;
margin: 0 auto;
padding: 80px 15px;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 60px;
align-items: center;
}

.hero-text {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.15);
color: var(--white);
padding: 8px 18px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
letter-spacing: 0.5px;
}

.hero h1 {
font-size: 42px;
line-height: 1.2;
margin-bottom: 20px;
font-weight: 800;
color: var(--white);
}

.hero p {
font-size: 17px;
line-height: 1.6;
margin-bottom: 30px;
color: var(--white);
opacity: 0.92;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
}

.btn-outline {
background: transparent;
border: 2px solid var(--white);
color: var(--white);
padding: 12px 28px;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
display: inline-block;
}

.btn-outline:hover {
background: var(--white);
color: var(--primary);
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 20px;
}

.stat-item {
text-align: left;
}

.stat-number {
font-size: 32px;
font-weight: 800;
color: var(--white);
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
color: var(--white);
opacity: 0.8;
}

.hero-visual {
position: relative;
}

.hero-card {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.3s;
}

.hero-card:hover {
transform: perspective(1000px) rotateY(0deg);
}

.hero-card img {
width: 100%;
height: auto;
display: block;
}

.btn {
display: inline-block;
background: var(--accent);
color: var(--white);
padding: 12px 28px;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
background: #e55a28;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.btn-secondary {
background: var(--white);
color: var(--primary);
border: 2px solid var(--primary);
}

.btn-secondary:hover {
background: var(--primary);
color: var(--white);
}

section {
padding: 50px 0;
}

h2 {
font-size: 26px;
margin-bottom: 20px;
color: var(--primary);
font-weight: 700;
}

h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

p {
margin-bottom: 15px;
color: var(--gray);
line-height: 1.6;
}

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 40px;
color: var(--gray);
font-size: 16px;
}

.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

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

.image-content img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-features {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
margin-top: 25px;
}

.feature-item {
color: var(--primary);
font-weight: 600;
font-size: 15px;
}

.service-grid, .benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 30px;
}

.service-card, .benefit {
background: var(--white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.service-card:hover, .benefit:hover {
transform: translateY(-5px);
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-icon {
font-size: 36px;
margin-bottom: 15px;
}

.industry-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-top: 30px;
}

.industry-item {
background: var(--white);
padding: 18px;
border-radius: 6px;
text-align: center;
border: 2px solid var(--border);
font-weight: 500;
}

.testimonials {
background: var(--light);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 30px;
}

.testimonial {
background: var(--white);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--accent);
}

.quote-mark {
font-size: 60px;
color: var(--accent);
line-height: 1;
margin-bottom: 10px;
opacity: 0.3;
}

.author {
margin-top: 15px;
font-weight: 600;
color: var(--primary);
font-size: 14px;
}

.author-title {
font-size: 13px;
color: var(--gray);
font-weight: 400;
}

.expertise {
background: var(--light);
}

.expertise-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 30px;
}

.expertise-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
border-left: 4px solid var(--accent);
transition: transform 0.3s;
}

.expertise-card:hover {
transform: translateX(5px);
}

.approach {
padding: 70px 0;
}

.approach-content {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: start;
}

.approach-steps {
margin-top: 30px;
}

.approach-step {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.step-num {
font-size: 18px;
font-weight: 800;
color: var(--accent);
min-width: 40px;
}

.step-content h3 {
margin-bottom: 8px;
}

.approach-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-modern {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 70px 0;
position: relative;
overflow: hidden;
}

.cta-modern::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
opacity: 0.3;
}

.cta-content {
text-align: center;
color: var(--white);
position: relative;
z-index: 1;
}

.cta-text h2 {
color: var(--white);
font-size: 36px;
margin-bottom: 15px;
}

.cta-text p {
color: var(--white);
opacity: 0.9;
font-size: 18px;
margin-bottom: 35px;
}

.cta-actions {
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
}

.btn-large {
background: var(--accent);
color: var(--white);
padding: 16px 40px;
text-decoration: none;
border-radius: 4px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s;
display: inline-block;
}

.btn-large:hover {
background: #e55a28;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.btn-outline-white {
background: transparent;
border: 2px solid var(--white);
color: var(--white);
padding: 16px 40px;
text-decoration: none;
border-radius: 4px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s;
display: inline-block;
}

.btn-outline-white:hover {
background: var(--white);
color: var(--primary);
}

.location-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
margin-top: 30px;
}

.map-container iframe {
width: 100%;
border-radius: 8px;
}

.contact-info {
background: var(--light);
padding: 25px;
border-radius: 8px;
}

footer {
background: var(--dark);
color: var(--white);
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
color: var(--white);
margin-bottom: 15px;
font-size: 16px;
}

.footer-col p {
color: rgba(255,255,255,0.7);
font-size: 14px;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 8px;
}

.footer-col a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
}

.footer-col a:hover {
color: var(--white);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
color: rgba(255,255,255,0.6);
font-size: 13px;
}

.popup {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: var(--white);
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
z-index: 9999;
display: none;
max-width: 500px;
}

.popup.show {
display: block;
}

.popup-content p {
margin-bottom: 15px;
color: var(--dark);
font-size: 14px;
}

.popup-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.popup-buttons .btn {
padding: 10px 20px;
font-size: 13px;
}

.popup-buttons a {
color: var(--primary);
font-size: 13px;
text-decoration: none;
}

.page-hero {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
font-size: 32px;
margin-bottom: 10px;
}

.page-hero p {
color: var(--white);
opacity: 0.9;
}

.contact-wrapper, .booking-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 30px;
}

.contact-details, .booking-info {
display: flex;
flex-direction: column;
gap: 20px;
}

.contact-item, .info-box {
background: var(--light);
padding: 20px;
border-radius: 8px;
}

.contact-item h3, .info-box h4 {
margin-bottom: 10px;
}

.contact-form-wrapper, .booking-form {
background: var(--light);
padding: 30px;
border-radius: 8px;
}

form {
display: flex;
flex-direction: column;
gap: 18px;
}

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

.form-group label {
margin-bottom: 6px;
font-weight: 500;
font-size: 14px;
color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
padding: 10px 12px;
border: 1px solid var(--border);
border-radius: 4px;
font-size: 14px;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: var(--primary);
}

.checkbox-group {
flex-direction: row;
align-items: center;
gap: 8px;
}

.checkbox-group input {
width: auto;
}

.checkbox-group label {
margin: 0;
font-size: 13px;
}

.map-section {
background: var(--light);
}

.map-wrapper iframe {
width: 100%;
border-radius: 8px;
}

.reasons-grid, .availability-grid, .faq-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 30px;
}

.reason, .availability-item, .faq-item {
background: var(--white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cta-secondary {
background: var(--light);
text-align: center;
}

.calendar-intro, .strategy-intro, .contact-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 30px;
}

.calendar-content {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
margin-top: 30px;
}

.calendar-info ul {
list-style: none;
padding-left: 0;
}

.calendar-info ul li {
padding: 10px 0;
border-bottom: 1px solid var(--border);
}

.session-details {
background: var(--light);
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}

.call-benefits {
background: var(--light);
}

.benefit-card {
background: var(--white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.thankyou-page, .error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.thankyou-container, .error-container {
text-align: center;
color: var(--white);
padding: 40px 20px;
max-width: 600px;
}

.success-icon {
width: 80px;
height: 80px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
font-size: 48px;
font-weight: 700;
}

.error-code {
font-size: 100px;
font-weight: 700;
color: var(--accent);
margin-bottom: 20px;
}

.thankyou-content h1, .error-content h1 {
font-size: 28px;
margin-bottom: 15px;
color: var(--white);
}

.thankyou-content p, .error-content p {
color: var(--white);
opacity: 0.9;
margin-bottom: 15px;
}

.thankyou-info, .thankyou-contact {
background: rgba(255,255,255,0.1);
padding: 20px;
border-radius: 8px;
margin: 20px 0;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin: 25px 0;
}

.error-links {
margin-top: 30px;
background: rgba(255,255,255,0.1);
padding: 25px;
border-radius: 8px;
}

.error-links h3 {
color: var(--white);
margin-bottom: 15px;
}

.error-links ul {
list-style: none;
}

.error-links ul li {
margin-bottom: 10px;
}

.error-links a {
color: var(--white);
text-decoration: none;
opacity: 0.9;
}

.error-links a:hover {
opacity: 1;
}

.policy-hero {
background: var(--primary);
color: var(--white);
padding: 40px 0;
text-align: center;
}

.policy-hero h1 {
font-size: 32px;
margin-bottom: 10px;
color: var(--white);
}

.policy-hero p {
color: var(--white);
opacity: 0.9;
}

.policy-content {
padding: 50px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
margin-top: 35px;
margin-bottom: 15px;
}

.policy-text h3 {
margin-top: 25px;
margin-bottom: 12px;
}

.policy-text p {
margin-bottom: 15px;
}

.contact-cta img {
width: 100%;
height: auto;
border-radius: 8px;
margin-top: 20px;
}

@media (max-width: 992px) {
.hero-content {
grid-template-columns: 1fr;
padding: 60px 15px;
gap: 40px;
}

.hero h1 {
font-size: 34px;
}

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.hero-card {
transform: none;
}

.approach-content {
grid-template-columns: 1fr;
gap: 40px;
}

.content-grid, .location-content, .contact-wrapper, .booking-wrapper, .calendar-content {
grid-template-columns: 1fr;
gap: 30px;
}

.service-grid, .benefits-grid, .testimonial-grid, .industry-list, .reasons-grid, .availability-grid, .faq-grid, .expertise-grid {
grid-template-columns: repeat(2, 1fr);
}

.footer-content {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: left 0.3s;
}

nav.active {
left: 0;
}

nav ul {
flex-direction: column;
gap: 15px;
}

.burger {
display: flex;
}

.hero h1 {
font-size: 28px;
}

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

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}

.stat-number {
font-size: 26px;
}

.stat-label {
font-size: 12px;
}

.hero-buttons {
flex-direction: column;
}

h2 {
font-size: 22px;
}

.service-grid, .benefits-grid, .testimonial-grid, .industry-list, .reasons-grid, .availability-grid, .faq-grid, .expertise-grid {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
}

.popup {
left: 10px;
right: 10px;
}

.thankyou-actions, .error-actions, .cta-actions {
flex-direction: column;
}

.error-code {
font-size: 80px;
}

.cta-text h2 {
font-size: 28px;
}

.cta-text p {
font-size: 16px;
}
}

@media (max-width: 480px) {
body {
font-size: 14px;
}

.hero-content {
padding: 40px 15px;
}

.hero h1 {
font-size: 24px;
}

.hero p {
font-size: 15px;
}

.hero-stats {
grid-template-columns: 1fr;
gap: 15px;
text-align: center;
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 28px;
}

section {
padding: 35px 0;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.btn, .btn-outline {
padding: 10px 22px;
font-size: 13px;
width: 100%;
text-align: center;
}

.btn-large, .btn-outline-white {
padding: 14px 30px;
font-size: 15px;
width: 100%;
text-align: center;
}

.service-card, .benefit, .testimonial, .reason, .availability-item, .faq-item, .benefit-card, .expertise-card {
padding: 18px;
}

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

.thankyou-content h1, .error-content h1 {
font-size: 24px;
}

.success-icon {
width: 60px;
height: 60px;
font-size: 36px;
}

footer {
padding: 30px 0 15px;
}

.cta-text h2 {
font-size: 24px;
}

.cta-text p {
font-size: 15px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 10px;
}

.logo {
font-size: 16px;
}

.hero h1 {
font-size: 22px;
}

.stat-number {
font-size: 24px;
}

h2 {
font-size: 18px;
}

.btn, .btn-outline {
padding: 9px 18px;
font-size: 12px;
}

.btn-large, .btn-outline-white {
padding: 12px 24px;
font-size: 14px;
}
}
