* {
    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;
    color: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.hook-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

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

.hook-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.hook-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-reveal {
    padding: 120px 30px;
    background: #ffffff;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-amplify {
    padding: 100px 30px;
    background: #2c3e50;
    color: #ffffff;
}

.centered-block {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-amplify h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #e74c3c;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.insight-section {
    padding: 120px 30px;
    background: #ecf0f1;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.cta-inline {
    display: inline-block;
    padding: 14px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.trust-builder {
    padding: 100px 30px;
    background: #ffffff;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

.value-reveal {
    padding: 120px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.centered-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.value-reveal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.image-overlay-text h3 {
    font-size: 48px;
    font-weight: 800;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}

.services-preview {
    padding: 120px 30px;
    background: #ffffff;
}

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

.services-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #7f8c8d;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 15px;
    line-height: 1.6;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #e74c3c;
    margin: 20px 25px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

.urgency-block {
    padding: 80px 30px;
    background: #e74c3c;
    color: #ffffff;
    text-align: center;
}

.urgency-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #7f8c8d;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

.cta-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-block h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-block p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 35px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    font-size: 16px;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 30px 80px;
    text-align: center;
    color: #ffffff;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-story {
    padding: 100px 30px;
}

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

.story-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-block p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.mission-block {
    margin: 80px 0;
}

.mission-block img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.mission-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-box {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.value-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #e74c3c;
}

.value-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.cta-about {
    margin-top: 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 12px;
    color: #ffffff;
}

.cta-about h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.services-detailed {
    padding: 80px 30px;
}

.service-full {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 30px;
}

.service-header img {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    border-radius: 8px;
}

.service-header-text {
    flex: 1;
    min-width: 250px;
}

.service-header-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #e74c3c;
}

.service-details {
    padding: 40px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details ul li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.service-benefit {
    background: #ecf0f1;
    padding: 20px;
    border-left: 4px solid #3498db;
    margin: 25px 0;
    font-size: 16px;
    font-style: italic;
}

.services-cta {
    padding: 80px 30px;
    background: #2c3e50;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.btn-contact {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.contact-section {
    padding: 80px 30px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #e74c3c;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.info-block a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #2980b9;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

.location-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.location-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-container p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.map-placeholder {
    background: #e0e0e0;
    padding: 100px 30px;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-content {
    padding: 80px 30px;
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #2980b9;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px;
    margin-top: 60px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #2ecc71;
    color: #ffffff;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.service-info {
    margin: 30px 0;
}

.selected-service {
    font-size: 18px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.next-steps {
    font-size: 17px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .services-title {
        font-size: 36px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .contact-form {
        padding: 30px;
    }

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