/* Reset and Base Styles */
* {
    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: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Advertorial Notice */
.advertorial-notice {
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 32px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    color: #4a90e2;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.hero-image {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 12px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

.hero-content {
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.hero-title .highlight {
    color: #4a90e2;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    min-height: 44px;
    min-width: 44px;
    text-align: center;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #4a90e2;
    padding: 12px 35px;
    border: 2px solid #4a90e2;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: white;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.about-text {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.signature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.signature-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.signature-name {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 14px;
    color: #666;
}

.about-image {
    position: relative;
}

.circle-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
}

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

.stats-card {
    position: absolute;
    bottom: 50px;
    right: -30px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.stat-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 13px;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.section-title-center.white-text {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #4a90e2;
    font-size: 32px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    width: 44px;
    height: 44px;
    background-color: #1a1a2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #4a90e2;
}

/* Management Section */
.management-section {
    padding: 100px 0;
    background-color: white;
}

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

.circle-image-large {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
}

.circle-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    color: #4a90e2;
    font-size: 24px;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.stat-icon-large {
    width: 80px;
    height: 80px;
    background-color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 36px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
    background-color: #1a1a2e;
}

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

.steps-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
    font-size: 28px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

.steps-image {
    border-radius: 50%;
    overflow: hidden;
    width: 450px;
    height: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-left: auto;
}

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

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: white;
}

.author-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: #4a90e2;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-bio {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 44px;
    height: 44px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: #4a90e2;
    color: white;
}

/* Consulting Section */
.consulting-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.consulting-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.consulting-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.consulting-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.consulting-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #666;
}

.consulting-feature i {
    color: #4a90e2;
    font-size: 18px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #4a90e2;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-color: #4a90e2;
    color: white;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-title {
    color: white;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-currency {
    font-size: 16px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.pricing-card.featured .price-currency {
    color: rgba(255, 255, 255, 0.9);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
}

.pricing-card.featured .price-amount {
    color: white;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-features i {
    color: #4a90e2;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features i {
    color: white;
}

.btn-pricing {
    display: inline-block;
    background-color: #1a1a2e;
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.btn-pricing:hover {
    background-color: #4a90e2;
    transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing {
    background-color: white;
    color: #4a90e2;
}

.pricing-card.featured .btn-pricing:hover {
    background-color: #f0f7ff;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: #4a90e2;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA Quote Section */
.cta-quote-section {
    padding: 100px 0;
    background-color: white;
}

.cta-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-quote-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    min-height: 44px;
}

.btn-newsletter {
    background-color: #4a90e2;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.btn-newsletter:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0f0f1e;
    color: #b0b0b0;
    padding: 80px 0 30px;
}

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

.footer-column h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    min-height: 44px;
    line-height: 34px;
}

.footer-column ul li a:hover {
    color: #4a90e2;
}

/* Research Section */
.research-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.research-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.research-intro {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.research-links {
    list-style: none;
}

.research-links li {
    margin-bottom: 12px;
}

.research-links a {
    color: #4a90e2;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    min-height: 44px;
    line-height: 34px;
}

.research-links a:hover {
    color: #5dade2;
    text-decoration: underline;
}

/* Disclosures */
.disclosures {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 40px;
}

.disclosure-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ff6b6b;
    border-radius: 4px;
}

.disclosure-item p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

.disclosure-item strong {
    color: white;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-description {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.contact-form {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.form-group label i {
    color: #4a90e2;
    font-size: 14px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

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

.checkbox-group label {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group label i {
    color: #4a90e2;
    font-size: 14px;
    margin-top: 2px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.contact-submit-btn i {
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item h3 i {
    color: #4a90e2;
    font-size: 20px;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0 0;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item h3 {
        justify-content: center;
    }
    
    .contact-form-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .contact-form-description {
        font-size: 15px;
    }
}

/* Copyright */
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #666;
}

/* Responsive Design - Tablets and Small Desktops */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-grid,
    .about-grid,
    .management-grid,
    .consulting-grid,
    .cta-quote-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-image {
        margin: 0 auto;
        width: 400px;
        height: 400px;
    }

    .circle-image,
    .circle-image-large {
        width: 100%;
        max-width: 450px;
        height: 450px;
        margin: 0 auto;
        aspect-ratio: 1;
    }

    .stats-card {
        position: static;
        margin-top: 30px;
        max-width: 100%;
    }

    .team-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title,
    .section-title-center {
        font-size: 36px;
    }
}

/* Responsive Design - Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .logo h2 {
        font-size: 20px;
    }

    .hero-section,
    .about-section,
    .services-section,
    .management-section,
    .steps-section,
    .team-section,
    .consulting-section,
    .pricing-section,
    .blog-section,
    .cta-quote-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
        padding: 0;
    }

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

    .hero-content {
        padding: 0;
    }

    .section-title,
    .section-title-center {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .about-text {
        font-size: 16px;
    }

    .services-grid,
    .team-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

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

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

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

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-input,
    .btn-newsletter {
        width: 100%;
    }

    .hero-image img {
        height: 350px;
        object-fit: contain;
    }

    .circle-image,
    .circle-image-large {
        width: 100%;
        height: 350px;
        aspect-ratio: 1;
    }

    .steps-image {
        width: 300px;
        height: 300px;
    }

    .consulting-image img {
        height: 350px;
    }

    .team-image {
        height: 300px;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-content p {
        font-size: 15px;
    }
}

/* Responsive Design - Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .advertorial-notice {
        font-size: 12px;
        padding: 6px 0;
        letter-spacing: 1px;
    }

    .header {
        padding: 15px 0;
    }

    .logo h2 {
        font-size: 18px;
    }

    .hero-section,
    .about-section,
    .services-section,
    .management-section,
    .steps-section,
    .team-section,
    .consulting-section,
    .pricing-section,
    .blog-section,
    .cta-quote-section {
        padding: 40px 0;
    }

    .stats-section {
        padding: 40px 0;
    }

    .newsletter-section {
        padding: 40px 0;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .section-title,
    .section-title-center {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .about-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

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

    .btn-pricing {
        width: 100%;
        padding: 14px 30px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .hero-image img {
        height: 300px;
        object-fit: contain;
    }

    .circle-image,
    .circle-image-large {
        width: 100%;
        max-width: 300px;
        height: 300px;
        aspect-ratio: 1;
        margin: 0 auto;
    }

    .steps-image {
        width: 280px;
        height: 280px;
    }

    .stat-icon-large {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

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

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

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 18px;
    }

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

    .author-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .team-image {
        height: 280px;
    }

    .team-info {
        padding: 20px;
    }

    .team-info h3 {
        font-size: 18px;
    }

    .team-social a {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-title {
        font-size: 22px;
    }

    .price-amount {
        font-size: 40px;
    }

    .pricing-features li {
        font-size: 14px;
        padding: 10px 0;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 13px;
    }

    .consulting-image img {
        height: 300px;
    }

    .consulting-features {
        gap: 15px;
    }

    .consulting-feature {
        font-size: 14px;
    }

    .newsletter-content h2 {
        font-size: 24px;
    }

    .newsletter-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .newsletter-input {
        padding: 14px 20px;
        font-size: 14px;
    }

    .btn-newsletter {
        padding: 14px 30px;
        font-size: 14px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-column p,
    .footer-column ul li a {
        font-size: 14px;
    }

    .research-section {
        padding: 20px;
    }

    .research-section h3 {
        font-size: 16px;
    }

    .research-intro,
    .research-links a {
        font-size: 13px;
    }

    .disclosure-item {
        padding: 15px;
    }

    .disclosure-item strong {
        font-size: 13px;
    }

    .disclosure-item p {
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
        padding-top: 20px;
        margin-top: 30px;
    }

    .signature-box {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
        gap: 10px;
    }

    .feature-item i {
        margin-top: 0;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 14px;
    }
}

/* Fix horizontal scrolling on all devices */
@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    .hero-grid,
    .about-grid,
    .management-grid,
    .steps-grid,
    .consulting-grid,
    .cta-quote-grid {
        overflow: hidden;
    }
}