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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #2d3748;
font-size: 14px;
}

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

.header-unique {
background: #0f172a;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: #fff;
letter-spacing: -0.5px;
}

.nav {
display: flex;
gap: 25px;
}

.nav a {
color: #e2e8f0;
text-decoration: none;
font-size: 13px;
font-weight: 500;
transition: color 0.3s;
}

.nav a:hover {
color: #fff;
}

.nav-toggle {
display: none;
background: none;
border: none;
color: #fff;
font-size: 24px;
cursor: pointer;
}

.mega-hero {
position: relative;
overflow: hidden;
padding: 80px 0 60px;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.hero-shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 500px;
height: 500px;
background: #3b82f6;
top: -200px;
right: -100px;
}

.shape-2 {
width: 400px;
height: 400px;
background: #8b5cf6;
bottom: -150px;
left: -100px;
}

.shape-3 {
width: 300px;
height: 300px;
background: #06b6d4;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.hero-grid {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.hero-content {
color: #fff;
}

.hero-badge {
display: inline-block;
background: rgba(59, 130, 246, 0.2);
color: #60a5fa;
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 20px;
}

.hero-content h1 {
font-size: 42px;
line-height: 1.2;
margin-bottom: 20px;
font-weight: 800;
}

.hero-content > p {
font-size: 16px;
line-height: 1.7;
color: #cbd5e1;
margin-bottom: 30px;
max-width: 500px;
}

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

.btn-primary {
display: inline-block;
background: #3b82f6;
color: #fff;
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 13px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: #2563eb;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
display: inline-block;
background: transparent;
color: #fff;
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 13px;
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.3s;
}

.btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: #fff;
}

.btn-secondary {
display: inline-block;
background: #3b82f6;
color: #fff;
padding: 11px 26px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 13px;
transition: all 0.3s;
}

.btn-secondary:hover {
background: #2563eb;
transform: translateY(-2px);
}

.hero-stats {
display: flex;
gap: 35px;
}

.hero-stat {
display: flex;
flex-direction: column;
}

.stat-value {
font-size: 28px;
font-weight: 700;
color: #fff;
line-height: 1;
}

.stat-text {
font-size: 11px;
color: #94a3b8;
margin-top: 5px;
}

.hero-visual {
position: relative;
height: 400px;
}

.hero-card {
position: absolute;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
padding: 18px;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 12px;
animation: float 3s ease-in-out infinite;
}

.card-1 {
top: 20px;
left: 20px;
animation-delay: 0s;
}

.card-2 {
top: 140px;
right: 40px;
animation-delay: 1s;
}

.card-3 {
bottom: 40px;
left: 60px;
animation-delay: 2s;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

.card-icon {
font-size: 28px;
}

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

.card-text strong {
font-size: 13px;
color: #1e293b;
margin-bottom: 2px;
}

.card-text span {
font-size: 11px;
color: #64748b;
}

.trust-bar {
background: #f8fafc;
padding: 20px 0;
border-bottom: 1px solid #e2e8f0;
}

.trust-text {
text-align: center;
font-size: 12px;
color: #64748b;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}

section {
padding: 60px 0;
}

.section-header {
text-align: center;
margin-bottom: 45px;
}

.section-label {
display: inline-block;
background: #eff6ff;
color: #3b82f6;
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 12px;
}

.section-desc {
font-size: 15px;
color: #64748b;
max-width: 700px;
margin: 10px auto 0;
}

h2 {
font-size: 32px;
margin-bottom: 15px;
text-align: center;
color: #0f172a;
font-weight: 700;
line-height: 1.3;
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: #1e293b;
font-weight: 600;
}

.services-modern {
background: #fff;
}

.services-grid-modern {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.service-modern {
padding: 28px;
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 0.3s;
}

.service-modern:hover {
border-color: #3b82f6;
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
transform: translateY(-5px);
}

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

.service-modern h3 {
margin-bottom: 12px;
}

.service-modern p {
font-size: 13px;
color: #64748b;
line-height: 1.7;
}

.featured-image-section {
background: #f8fafc;
}

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

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

.content-wrapper {
padding: 20px 0;
}

.content-wrapper h2 {
text-align: left;
margin-bottom: 18px;
}

.content-wrapper p {
font-size: 14px;
color: #64748b;
line-height: 1.8;
margin-bottom: 20px;
}

.check-list {
list-style: none;
padding: 0;
margin: 25px 0;
}

.check-list li {
font-size: 13px;
color: #475569;
padding: 8px 0;
padding-left: 28px;
position: relative;
}

.check-list li:before {
content: "✓";
position: absolute;
left: 0;
color: #3b82f6;
font-weight: 700;
font-size: 16px;
}

.methodology {
background: #fff;
}

.methodology-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.method-step {
text-align: center;
padding: 25px;
}

.step-num {
font-size: 48px;
font-weight: 800;
color: #3b82f6;
opacity: 0.2;
line-height: 1;
margin-bottom: 15px;
}

.method-step h3 {
margin-bottom: 12px;
}

.method-step p {
font-size: 13px;
color: #64748b;
line-height: 1.7;
}

.industries-served {
background: #f8fafc;
}

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

.industry-card {
background: #fff;
padding: 25px;
border-radius: 10px;
border-left: 3px solid #3b82f6;
transition: all 0.3s;
}

.industry-card:hover {
transform: translateX(5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.industry-card h3 {
margin-bottom: 10px;
font-size: 17px;
}

.industry-card p {
font-size: 13px;
color: #64748b;
line-height: 1.6;
}

.testimonials-modern {
background: #fff;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 25px;
}

.testimonial-card {
background: #f8fafc;
padding: 28px;
border-radius: 12px;
position: relative;
}

.quote-mark {
font-size: 60px;
color: #3b82f6;
opacity: 0.2;
line-height: 1;
margin-bottom: 10px;
}

.testimonial-card p {
font-size: 14px;
color: #475569;
line-height: 1.8;
margin-bottom: 20px;
}

.testimonial-author {
display: flex;
flex-direction: column;
}

.testimonial-author strong {
font-size: 14px;
color: #0f172a;
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 12px;
color: #94a3b8;
}

.image-showcase {
background: #f8fafc;
}

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

.showcase-content h2 {
text-align: left;
margin-bottom: 18px;
}

.showcase-content p {
font-size: 14px;
color: #64748b;
line-height: 1.8;
margin-bottom: 30px;
}

.impact-stats {
display: flex;
gap: 40px;
margin-bottom: 30px;
}

.impact-item {
display: flex;
flex-direction: column;
}

.impact-num {
font-size: 36px;
font-weight: 700;
color: #3b82f6;
line-height: 1;
}

.impact-label {
font-size: 12px;
color: #64748b;
margin-top: 6px;
}

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

.why-choose {
background: #fff;
}

.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
margin-top: 40px;
}

.why-item {
text-align: center;
padding: 20px;
}

.why-item h3 {
margin-bottom: 12px;
}

.why-item p {
font-size: 13px;
color: #64748b;
line-height: 1.7;
}

.team-section {
background: #f8fafc;
}

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

.team-text h2 {
text-align: left;
margin-bottom: 18px;
}

.team-text p {
font-size: 14px;
color: #64748b;
line-height: 1.8;
margin-bottom: 18px;
}

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

.location-contact {
background: #fff;
}

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

.contact-info-box {
background: #f8fafc;
padding: 30px;
border-radius: 12px;
}

.contact-info-box h3 {
margin-bottom: 15px;
font-size: 20px;
}

.contact-info-box p {
font-size: 13px;
color: #64748b;
margin-bottom: 12px;
line-height: 1.7;
}

.map-wrapper {
height: 400px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

footer {
background: #0f172a;
color: #e2e8f0;
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
font-size: 15px;
margin-bottom: 15px;
color: #fff;
}

.footer-col p {
font-size: 12px;
color: #94a3b8;
line-height: 1.6;
}

.footer-col a {
display: block;
color: #cbd5e1;
text-decoration: none;
font-size: 12px;
margin-bottom: 10px;
transition: color 0.3s;
}

.footer-col a:hover {
color: #fff;
}

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

.footer-bottom p {
font-size: 11px;
color: #94a3b8;
}

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #0f172a;
color: #fff;
padding: 20px;
z-index: 1000;
display: none;
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-popup.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.cookie-content p {
font-size: 12px;
margin: 0;
color: #cbd5e1;
}

.cookie-content a {
color: #60a5fa;
text-decoration: underline;
}

.cookie-btn {
background: #3b82f6;
color: #fff;
border: none;
padding: 10px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 12px;
font-weight: 600;
transition: background 0.3s;
}

.cookie-btn:hover {
background: #2563eb;
}

.page-hero {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: #fff;
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: 38px;
margin-bottom: 12px;
font-weight: 700;
}

.page-hero p {
font-size: 16px;
color: #cbd5e1;
}

.solutions-detail {
background: #fff;
}

.solution-list {
display: grid;
gap: 25px;
margin-top: 35px;
}

.solution-item {
background: #f8fafc;
padding: 28px;
border-radius: 12px;
border-left: 4px solid #3b82f6;
}

.solution-item h3 {
margin-bottom: 14px;
}

.solution-item p {
font-size: 13px;
color: #64748b;
margin-bottom: 15px;
line-height: 1.7;
}

.solution-item ul {
list-style: none;
padding-left: 0;
}

.solution-item ul li {
font-size: 13px;
color: #475569;
padding: 7px 0;
padding-left: 24px;
position: relative;
}

.solution-item ul li:before {
content: "✓";
position: absolute;
left: 0;
color: #3b82f6;
font-weight: 700;
}

.packages {
background: #f8fafc;
}

.package-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 35px;
}

.package-card {
background: #fff;
padding: 32px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
text-align: center;
transition: all 0.3s;
}

.package-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.package-card.featured {
border: 2px solid #3b82f6;
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.package-card h3 {
margin-bottom: 12px;
}

.package-price {
font-size: 36px;
font-weight: 700;
color: #3b82f6;
margin: 18px 0;
}

.package-card > p {
font-size: 13px;
color: #64748b;
margin-bottom: 20px;
}

.package-card ul {
list-style: none;
padding: 0;
margin: 25px 0;
text-align: left;
}

.package-card ul li {
font-size: 13px;
color: #475569;
padding: 8px 0;
padding-left: 24px;
position: relative;
}

.package-card ul li:before {
content: "✓";
position: absolute;
left: 0;
color: #3b82f6;
font-weight: 700;
}

.process {
text-align: center;
background: #fff;
}

.process > p {
color: #64748b;
margin-bottom: 35px;
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-top: 35px;
}

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

.timeline-marker {
width: 60px;
height: 60px;
background: #3b82f6;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 18px;
font-weight: 700;
font-size: 20px;
}

.timeline-item h3 {
margin-bottom: 10px;
font-size: 17px;
}

.timeline-item p {
font-size: 13px;
color: #64748b;
line-height: 1.6;
}

.contact-section {
background: #f8fafc;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 35px;
}

.contact-form-container h2 {
text-align: left;
font-size: 26px;
margin-bottom: 12px;
}

.contact-form-container > p {
font-size: 13px;
color: #64748b;
margin-bottom: 25px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-size: 13px;
font-weight: 600;
color: #1e293b;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #e2e8f0;
border-radius: 6px;
font-size: 13px;
font-family: inherit;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #3b82f6;
}

.form-group textarea {
resize: vertical;
}

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 10px;
font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 4px;
}

.checkbox-group span {
font-size: 12px;
color: #64748b;
}

.checkbox-group a {
color: #3b82f6;
}

.contact-details h2 {
text-align: left;
font-size: 26px;
margin-bottom: 25px;
}

.contact-item {
margin-bottom: 25px;
}

.contact-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

.contact-item p {
font-size: 13px;
color: #64748b;
line-height: 1.7;
}

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

.map-section h2 {
margin-bottom: 30px;
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
width: 100%;
height: 400px;
}

.results-showcase {
background: #fff;
}

.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 25px;
margin-top: 35px;
}

.result-card {
background: #f8fafc;
padding: 28px;
border-radius: 12px;
transition: all 0.3s;
}

.result-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.result-card h3 {
margin-bottom: 14px;
}

.result-card p {
font-size: 13px;
color: #64748b;
margin-bottom: 18px;
line-height: 1.7;
}

.result-metrics {
display: flex;
flex-direction: column;
gap: 8px;
}

.result-metrics span {
font-size: 12px;
color: #3b82f6;
font-weight: 600;
}

.impact {
text-align: center;
background: #f8fafc;
}

.impact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 35px;
margin-top: 35px;
}

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

.impact-number {
font-size: 42px;
font-weight: 700;
color: #3b82f6;
display: block;
margin-bottom: 10px;
}

.impact-item p {
font-size: 13px;
color: #64748b;
}

.policy-page {
padding: 60px 0;
}

.policy-page h1 {
font-size: 38px;
color: #0f172a;
margin-bottom: 12px;
font-weight: 700;
}

.policy-date {
font-size: 12px;
color: #94a3b8;
margin-bottom: 35px;
}

.policy-content h2 {
font-size: 22px;
text-align: left;
margin-top: 30px;
margin-bottom: 14px;
color: #1e293b;
}

.policy-content h3 {
font-size: 17px;
text-align: left;
margin-top: 18px;
margin-bottom: 10px;
color: #334155;
}

.policy-content p {
font-size: 13px;
color: #64748b;
margin-bottom: 14px;
line-height: 1.7;
}

.policy-content ul {
margin: 14px 0;
padding-left: 28px;
}

.policy-content ul li {
font-size: 13px;
color: #64748b;
margin-bottom: 8px;
line-height: 1.6;
}

.error-page,
.thankyou-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: #fff;
text-align: center;
padding: 20px;
}

.error-content,
.thankyou-content {
max-width: 600px;
}

.error-content h1 {
font-size: 100px;
margin-bottom: 20px;
font-weight: 800;
line-height: 1;
}

.error-content h2,
.thankyou-content h1 {
font-size: 32px;
margin-bottom: 18px;
font-weight: 700;
}

.error-content p,
.thankyou-content p {
font-size: 16px;
margin-bottom: 30px;
color: #cbd5e1;
line-height: 1.6;
}

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

.hero-visual {
height: 300px;
}

.image-content-grid,
.showcase-grid,
.team-content-grid {
grid-template-columns: 1fr;
gap: 35px;
}

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

@media (max-width: 768px) {
.nav {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #0f172a;
padding: 20px 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav.active {
display: flex;
}

.nav a {
padding: 10px 0;
}

.nav-toggle {
display: block;
}

.mega-hero {
padding: 50px 0 40px;
}

.hero-content h1 {
font-size: 32px;
}

.hero-content > p {
font-size: 14px;
}

.hero-stats {
gap: 25px;
}

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

h2 {
font-size: 26px;
}

.section-header {
margin-bottom: 35px;
}

.contact-wrapper {
grid-template-columns: 1fr;
gap: 35px;
}

.services-grid-modern {
grid-template-columns: 1fr;
}

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

.error-content h1 {
font-size: 70px;
}

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

@media (max-width: 480px) {
.mega-hero {
padding: 40px 0 30px;
}

.hero-content h1 {
font-size: 26px;
}

.hero-content > p {
font-size: 13px;
}

.hero-actions {
flex-direction: column;
gap: 12px;
}

.hero-actions a {
width: 100%;
text-align: center;
}

.hero-stats {
flex-direction: column;
gap: 20px;
align-items: flex-start;
}

.hero-card {
padding: 14px;
}

.card-icon {
font-size: 24px;
}

h2 {
font-size: 22px;
}

h3 {
font-size: 17px;
}

section {
padding: 40px 0;
}

.section-header {
margin-bottom: 30px;
}

.package-grid,
.results-grid,
.industries-grid {
grid-template-columns: 1fr;
}

.methodology-grid,
.process-timeline,
.why-grid {
grid-template-columns: 1fr;
}

.cookie-content {
flex-direction: column;
text-align: center;
}

.logo {
font-size: 16px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 10px 22px;
font-size: 12px;
}

.impact-stats {
flex-direction: column;
gap: 25px;
align-items: flex-start;
}

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

.error-content h1 {
font-size: 60px;
}

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

@media (max-width: 320px) {
body {
font-size: 13px;
}

.container {
padding: 0 12px;
}

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

.hero-content > p {
font-size: 12px;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.logo {
font-size: 15px;
}

.stat-value {
font-size: 20px;
}

.impact-num,
.impact-number {
font-size: 32px;
}

.package-price {
font-size: 30px;
}

.hero-card {
padding: 12px;
}

.card-text strong {
font-size: 12px;
}

.card-text span {
font-size: 10px;
}

.service-modern,
.solution-item,
.package-card,
.result-card {
padding: 20px;
}

.error-content h1 {
font-size: 50px;
}

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

.error-content p,
.thankyou-content p {
font-size: 14px;
}
}
