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

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Header Navigation */
header {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav {
    background-color: #6b6b6b;
    border-radius: 50px;
    padding: 18px 50px;
    display: inline-flex;
    gap: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

nav a:hover {
    opacity: 0.8;
}

nav a:first-child {
    font-weight: 500;
}

/* Logo */
.logo {
    position: absolute;
    left: 150px;
    top: 50px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* Social Media Icons */
.social-icons {
    position: absolute;
    right: 150px;
    top: 50px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.6;
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: #6b6b6b;
}

/* Hero Section */
.hero {
    padding-left: 150px;
    padding-top: 250px;
    padding-bottom: 200px;
    max-width: 900px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.hero .hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #d4d4d4;
    letter-spacing: -0.5px;
}

.hero .hero-afara {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    color: #ff6b35;
    letter-spacing: -0.5px;
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, #ffffff 0%, #e8e8e8 100%);
    padding: 120px 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.features-header p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.features-content {
    display: flex;
    gap: 30px;
}

.features-left {
    flex: 1;
    display: flex;
    gap: 20px;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-right {
    flex: 1;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.feature-card-short img {
    height: 120px;
}

.feature-card-tall img {
    height: 200px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 40px;
}

.feature-card .card-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.feature-card .card-link:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.feature-card .card-link svg {
    width: 18px;
    height: 18px;
}

/* Robot Card */
.robot-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.robot-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.robot-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.robot-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    flex-grow: 1;
}

.view-3d-btn {
    align-self: flex-end;
    padding: 12px 32px;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-3d-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.production {
    padding: 120px 150px;
    background:
        linear-gradient(
            to right,
            white 0%,
            white 40%,
            rgba(255, 255, 255, 0.7) 55%,
            rgba(255, 255, 255, 0.3) 70%,
            transparent 100%
        ),
                radial-gradient(
            75.15% 73.84% at 80.96% 21.57%,
            rgba(255, 83, 0, 0.35) 0%,
            rgba(145, 255, 0, 0.35) 100%
        );

    backdrop-filter: blur(340.2px);
    -webkit-backdrop-filter: blur(340.2px);
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}


.production h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.production-content {
    display: flex;
    gap: 30px;
}

.production-left {
    flex: 1;
}

.production-right {
    flex: 2;
}

/* Production Hero Card */
.production-hero-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.production-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-hero-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 40px;
}

.production-hero-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

/* Production Grid */
.production-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.production-grid-row {
    display: grid;
    gap: 20px;
}

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

.production-grid-row.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Country Cards */
.country-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.country-card-large {
    grid-column: span 1;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.country-flag {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
}

.country-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.country-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #999999;
    font-weight: 500;
}

/* Small country cards without stats grid */
.country-card:not(.country-card-large) .stat-value {
    font-size: 26px;
    margin-top: 8px;
}

.country-card:not(.country-card-large) .stat-label {
    margin-top: 6px;
}

/* Journey Section */
.journey {
    background: #000000;
    padding: 80px 150px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.journey-row {
    display: flex;
    gap: 20px;
}

/* Journey Row 1 - 33% each */
.journey-row-1 .journey-box {
    flex: 1;
}

/* Journey Row 2 - 40%, 20%, 40% */
.journey-row-2 .journey-box-40 {
    flex: 0 0 calc(40% - 13.33px);
}

.journey-row-2 .journey-box-20 {
    flex: 0 0 calc(20% - 13.33px);
}

/* Journey Row 3 - 20%, 40%, 40% */
.journey-row-3 .journey-box-20 {
    flex: 0 0 calc(20% - 13.33px);
}

.journey-row-3 .journey-box-40 {
    flex: 0 0 calc(40% - 13.33px);
}

/* Journey Boxes */
.journey-box {
    background: #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.journey-text-box {
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.journey-text-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 16px;
    line-height: 1.2;
}

.journey-text-box p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
}

.journey-image-box {
    padding: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.journey-image-box img {
    width: 40%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.journey-image-box-center {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.journey-image-box-center img {
    width: 60%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.journey-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.journey-content p {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.4;
}

/* CTA Section */
.cta {
    background: #e8e8e8;
    padding: 100px 150px;
    text-align: center;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button {
    padding: 16px 48px;
    background: #3d4d3d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: #2d3d2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Competitors Section */
.competitors {
    background-color: #0a0a0a;
    background-image:
        linear-gradient(rgba(40, 40, 40, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 40, 40, 0.5) 1px, transparent 1px);
    background-size: 100px 100px;
    padding: 100px 150px;
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.competitors h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.competitor-card {
    background: rgba(45, 55, 45, 0.4);
    border: 1px solid rgba(80, 80, 80, 0.3);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.competitor-card:hover {
    background: rgba(55, 65, 55, 0.5);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.competitor-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 100px;
}

.competitor-icon svg {
    width: 100px;
    height: 100px;
}

.competitor-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.competitor-card p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.5;
}

/* Blog Section */
.blog {
    background: #f5f5f5;
    padding: 100px 150px;
    text-align: center;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.blog h2 {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.blog-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 60px;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

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

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.blog-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #ff6b35;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 80px 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-copyright {
    font-size: 14px;
    color: #999999;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.footer-menu {
    display: flex;
    gap: 100px;
    flex: 1;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    font-size: 15px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-right {
    flex: 0 0 auto;
}

.footer-right h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-email-input {
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    color: #333333;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    margin-bottom: 12px;
    outline: none;
}

.footer-email-input::placeholder {
    color: #999999;
}

.footer-demo-btn {
    padding: 14px 36px;
    background: #ff6b35;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
}

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

/* Blog Hero Section */
.blog-hero {
    background: #ffffff;
    padding: 120px 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.blog-hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.blog-hero-left {
    flex: 1;
}

.blog-hero-left h1 {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.blog-hero-highlight {
    color: #ff6b35;
}

.blog-hero-left p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

.blog-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-hero-circle {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.blog-hero-circle img {
    width: 70%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.blog-hero-decoration {
    position: absolute;
    border-radius: 8px;
}

.blog-decoration-1 {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    top: 10%;
    right: -5%;
    transform: rotate(15deg);
}

.blog-decoration-2 {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 50%;
    bottom: 20%;
    left: -5%;
}

.blog-decoration-3 {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    bottom: 10%;
    right: 5%;
    transform: rotate(-20deg);
}

/* Blog Posts Section */
.blog-posts {
    background: #ffffff;
    padding: 100px 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.blog-posts-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Featured Post (Left Large Card) */
.featured-post {
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.featured-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
}

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

.featured-post-content {
    display: flex;
    flex-direction: column;
}

.post-meta {
    font-size: 14px;
    color: #ff6b35;
    margin-bottom: 12px;
}

.post-author {
    font-weight: 600;
}

.post-date {
    color: #666666;
}

.featured-post-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.post-arrow {
    font-size: 30px;
    font-weight: 400;
    flex-shrink: 0;
}

.featured-post-content .post-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Small Posts (Right Column) */
.small-posts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.small-post {
    display: flex;
    gap: 20px;
}

.small-post-image {
    width: 300px;
    height: 240px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
}

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

.small-post-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.small-post-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.small-post-content .post-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Post Tags */
.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.tag-design {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.tag-research {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.tag-presentation {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

/* Blog Horizontal Section */
.blog-horizontal {
    background: #ffffff;
    padding: 0 150px 100px 150px;
}

.blog-horizontal-container {
    width: 100%;
}

.horizontal-post {
    display: flex;
    gap: 64px;
    align-items: center;
}

.horizontal-post-image {
    flex: 0 0 640px;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
}

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

.horizontal-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.horizontal-post-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.horizontal-post-content .post-arrow {
    font-size: 36px;
}

.horizontal-post-content .post-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tag-interface {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

/* All Blog Posts Section */
.all-blog-posts {
    background: #ffffff;
    padding: 0 150px 100px 150px;
}

.all-blog-posts-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.all-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 32px;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
}

.blog-post-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
}

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

.blog-post-content {
    display: flex;
    flex-direction: column;
}

.blog-post-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.blog-post-content .post-arrow {
    font-size: 24px;
    flex-shrink: 0;
}

.blog-post-content .post-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Additional Tag Colors */
.tag-leadership {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.tag-management {
    background: rgba(103, 58, 183, 0.1);
    color: #673ab7;
}

.tag-product {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.tag-frameworks {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.tag-software {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
}

.tag-tools {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

.tag-saas {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.tag-podcasts {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.tag-customer {
    background: rgba(63, 81, 181, 0.1);
    color: #3f51b5;
}

/* Blog Detail Hero Section */
.blog-detail-hero {
    padding: 60px 150px 0 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.blog-detail-hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
}

.blog-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Detail Content Section */
.blog-detail-content {
    background: #ffffff;
    padding: 80px 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.blog-detail-container {
    display: flex;
    gap: 64px;
}

.blog-detail-main {
    flex: 1;
}

.blog-detail-article {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 48px;
}

.article-meta {
    font-size: 14px;
    color: #ff6b35;
    margin-bottom: 16px;
}

.article-author {
    font-weight: 600;
}

.article-date {
    color: #666666;
}

.article-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.2;
}

.article-body {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 24px;
}

/* Blog Detail Sidebar */
.blog-detail-sidebar {
    flex: 0 0 450px;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.related-post-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: box-shadow 0.3s ease;
}

.related-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-post-image {
    flex: 0 0 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
}

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

.related-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-post-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-post-content .post-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 80px 150px 120px 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

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

.contact-header h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 16px;
    color: #666666;
}

.contact-wrapper {
    background: #f5f5f5;
    border-radius: 13px;
    padding: 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px;
}

/* Contact Info (Left Side) */
.contact-info {
    background: #1a1a1a;
    border-radius: 13px;
    padding: 42px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 16px;
    color: #ffffff;
}

/* Decorative Circles */
.contact-decoration {
    position: absolute;
    bottom: 120px;
    right: 40px;
    width: 200px;
    height: 200px;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
}

.circle-2 {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: 0;
}

/* Contact Social Icons */
.contact-social {
    display: flex;
    gap: 20px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

.contact-social svg {
    width: 18px;
    height: 18px;
}

/* Contact Form (Right Side) */
.contact-form {
    background: #ffffff;
    border-radius: 13px;
    padding: 48px;
}

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

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

.form-group.full-width {
    margin-bottom: 32px;
}

.form-group label {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s ease;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #ff6b35;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

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

.contact-submit-btn {
    padding: 16px 48px;
    background: #ff6b35;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
}

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

/* About Section */
.about-section {
    background: #ffffff;
    padding: 120px 150px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

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

.about-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.about-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* About Images Grid */
.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image 1 - Top full width */
.image-1 {
    grid-column: 1 / 3;
    height: 220px;
}

/* Image 2 - Bottom left square */
.image-2 {
    grid-column: 1;
    height: 260px;
}

/* Image 3 - Bottom right top */
.image-3 {
    grid-column: 2;
    height: 180px;
}

/* Image 4 - Bottom right bottom */
.image-4 {
    grid-column: 2;
    height: 180px;
}

/* ========================================
   RESPONSIVE STYLES FOR MEDIUM-LARGE SCREENS (1440px-1920px)
   ======================================== */

@media (min-width: 1440px) and (max-width: 1919px) {
    /* Remove container padding for full width */
    .container {
        padding: 0 !important;
    }

    /* Contact Section */
    .contact-section {
        padding: 100px 60px 140px 60px;
    }

    .contact-wrapper {
        max-width: 100%;
    }

    .contact-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* Footer */
    .footer {
        padding: 80px 60px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-content {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* Index Page */
    .hero {
        padding-left: 60px;
        padding-right: 60px;
    }

    .features {
        padding: 120px 60px;
    }

    .features-content {
        max-width: 1300px;
        margin: 0 auto;
    }

    .production {
        padding: 120px 60px;
    }

    .production-content {
        max-width: 1300px;
        margin: 0 auto;
    }

    .journey {
        padding: 80px 60px;
    }

    .cta {
        padding: 100px 60px;
    }

    .cta-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .competitors {
        padding: 100px 60px;
    }

    .competitors-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    .blog {
        padding: 100px 60px;
    }

    .blog-grid {
        max-width: 1300px;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    /* About Page */
    .about-section {
        padding: 140px 60px;
    }

    .about-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* Blog Page */
    .blog-hero {
        padding: 120px 60px;
    }

    .blog-posts {
        padding: 100px 60px;
    }

    .blog-posts-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .blog-horizontal {
        padding: 0 60px 100px 60px;
    }

    .blog-horizontal-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .all-blog-posts {
        padding: 0 60px 100px 60px;
    }

    .all-blog-posts-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* Blog Details */
    .blog-detail-hero {
        padding: 60px 60px 0 60px;
    }

    .blog-detail-hero-image {
        max-width: 1300px;
        margin: 0 auto;
    }

    .blog-detail-content {
        padding: 80px 60px;
    }

    .blog-detail-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ========================================
   RESPONSIVE STYLES FOR LARGE SCREENS (1920px+)
   ======================================== */

@media (min-width: 1920px) {
    /* Production Section - Fix layout for large screens */
    .production-content {
        max-width: 1600px;
        margin: 0 auto;
    }

    .production-left {
        flex: 0 0 40%;
    }

    .production-right {
        flex: 0 0 60%;
    }

    .production-hero-card {
        min-height: 500px;
    }

    /* Contact Section - Fix layout for large screens */
    .contact-section {
        padding: 120px 80px;
    }

    .contact-wrapper {
        max-width: 1600px;
        margin: 0 auto;
    }

    .contact-container {
        grid-template-columns: 500px 1fr;
        gap: 60px;
    }

    .contact-info {
        padding: 52px;
    }

    .contact-info h2 {
        font-size: 34px;
        margin-bottom: 52px;
    }

    .contact-item {
        margin-bottom: 52px;
        gap: 28px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-item span {
        font-size: 19px;
        line-height: 1.6;
    }

    .contact-social {
        gap: 28px;
        margin-top: 40px;
    }

    .contact-social a {
        width: 52px;
        height: 52px;
    }

    .contact-social svg {
        width: 24px;
        height: 24px;
    }

    .contact-form {
        padding: 52px;
    }

    .form-group label {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 18px;
        padding: 16px 0;
    }

    .form-group textarea {
        min-height: 140px;
    }

    .contact-submit-btn {
        padding: 18px 48px;
        font-size: 18px;
    }

    /* Footer - Improve layout for large screens */
    .footer {
        padding: 100px 80px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-content {
        max-width: 1600px;
        margin: 0 auto;
        gap: 120px;
    }

    .footer-left {
        flex: 0 0 340px;
    }

    .footer-logo img {
        height: 75px;
    }

    .footer-copyright {
        font-size: 16px;
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .footer-social {
        gap: 28px;
    }

    .footer-social a {
        width: 52px;
        height: 52px;
    }

    .footer-social svg {
        width: 24px;
        height: 24px;
    }

    .footer-menu {
        gap: 120px;
    }

    .footer-column h4 {
        font-size: 19px;
        margin-bottom: 28px;
    }

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

    .footer-column ul li a {
        font-size: 17px;
    }

    .footer-right {
        flex: 0 0 320px;
    }

    .footer-right h4 {
        font-size: 19px;
        margin-bottom: 28px;
    }

    .footer-email-input {
        padding: 18px 24px;
        font-size: 17px;
        margin-bottom: 20px;
    }

    .footer-demo-btn {
        padding: 18px 48px;
        font-size: 18px;
    }

    /* Index Page - Large screens */
    .hero {
        padding-left: 80px;
        padding-right: 80px;
        max-width: 1200px;
    }

    .features {
        padding: 140px 80px;
    }

    .features-content {
        max-width: 1700px;
        margin: 0 auto;
    }

    .production {
        padding: 140px 80px;
    }

    .journey {
        padding: 100px 80px;
    }

    .journey-row {
        max-width: 1800px;
        margin: 0 auto;
    }

    .cta {
        padding: 120px 80px;
    }

    .cta-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .competitors {
        padding: 120px 80px;
    }

    .competitors-grid {
        max-width: 1500px;
        margin: 0 auto;
        gap: 40px;
    }

    .competitor-card {
        padding: 60px 48px;
    }

    .blog {
        padding: 120px 80px;
    }

    .blog-grid {
        max-width: 1500px;
        margin: 0 auto;
        margin-bottom: 40px;
        gap: 40px;
    }

    /* About Page - Large screens */
    .about-section {
        padding: 160px 80px;
    }

    .about-container {
        max-width: 1700px;
        margin: 0 auto;
    }

    /* Blog Page - Large screens */
    .blog-hero {
        padding: 140px 80px;
    }

    .blog-posts {
        padding: 120px 80px;
    }

    .blog-posts-container {
        max-width: 1700px;
        margin: 0 auto;
    }

    .blog-horizontal {
        padding: 0 80px 120px 80px;
    }

    .blog-horizontal-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    .all-blog-posts {
        padding: 0 80px 120px 80px;
    }

    .all-blog-posts-container {
        max-width: 1700px;
        margin: 0 auto;
    }

    /* Blog Details - Large screens */
    .blog-detail-hero {
        padding: 80px 80px 0 80px;
    }

    .blog-detail-hero-image {
        max-width: 1600px;
        margin: 0 auto;
        height: 550px;
    }

    .blog-detail-content {
        padding: 100px 80px;
    }

    .blog-detail-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    .blog-detail-article {
        padding: 52px;
    }

    .article-title {
        font-size: 52px;
    }

    .article-body {
        font-size: 18px;
        line-height: 1.8;
    }
}

/* ========================================
   RESPONSIVE STYLES FOR CONTACT PAGE
   ======================================== */

/* iPad Pro and smaller desktops (max-width: 1439px) */
@media (max-width: 1439px) {
    .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .contact-section {
        padding: 80px 40px 120px 40px;
    }

    .footer {
        padding: 80px 40px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* iPad 11 inch and similar tablets (max-width: 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Header adjustments */
    .logo {
        left: 30px;
    }

    .social-icons {
        right: 30px;
    }

    /* Contact Section */
    .contact-section {
        padding: 70px 30px 100px 30px;
    }

    .contact-header h1 {
        font-size: 48px;
    }

    .contact-container {
        grid-template-columns: 350px 1fr;
        gap: 50px;
    }

    .contact-info {
        padding: 36px;
    }

    .contact-form {
        padding: 40px;
    }

    /* Footer */
    .footer {
        padding: 70px 30px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Tablet and Below (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Header adjustments */
    header {
        padding: 20px 20px 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        position: static;
        order: -1;
        margin-bottom: 20px;
    }

    nav {
        position: static;
        padding: 14px 30px;
        gap: 30px;
        order: 1;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 14px;
    }

    .social-icons {
        position: static;
        order: 2;
        margin-top: 10px;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 30px 80px 30px;
    }

    .contact-header h1 {
        font-size: 42px;
    }

    .contact-wrapper {
        padding: 32px;
    }

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

    .contact-info {
        padding: 32px;
        order: 2;
    }

    .contact-form {
        padding: 32px;
        order: 1;
    }

    /* Footer */
    .footer {
        padding: 60px 30px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-menu {
        gap: 60px;
    }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 15px 15px 0 15px;
    }

    .logo img {
        height: 35px;
    }

    nav {
        padding: 12px 20px;
        gap: 20px;
        font-size: 13px;
    }

    nav a {
        font-size: 13px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
    }

    .social-icons svg {
        width: 16px;
        height: 16px;
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 20px 60px 20px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h1 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-wrapper {
        padding: 24px;
        border-radius: 16px;
    }

    .contact-container {
        gap: 32px;
    }

    .contact-info {
        padding: 28px;
        border-radius: 16px;
    }

    .contact-info h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .contact-item {
        margin-bottom: 32px;
        gap: 16px;
    }

    .contact-item span {
        font-size: 14px;
    }

    .contact-decoration {
        bottom: 80px;
        right: 20px;
        width: 150px;
        height: 150px;
    }

    .circle-1 {
        width: 140px;
        height: 140px;
    }

    .circle-2 {
        width: 90px;
        height: 90px;
    }

    .contact-social a {
        width: 36px;
        height: 36px;
    }

    .contact-social svg {
        width: 16px;
        height: 16px;
    }

    /* Contact Form */
    .contact-form {
        padding: 28px;
        border-radius: 16px;
    }

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

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 10px 0;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-submit-btn {
        width: 100%;
        float: none;
        padding: 14px 32px;
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 50px 20px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }

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

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

    .footer-right h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-email-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .footer-demo-btn {
        width: 100%;
        padding: 12px 28px;
        font-size: 15px;
        margin-left: 0;
    }
}

/* Mobile Medium (max-width: 600px) */
@media (max-width: 600px) {
    /* Header */
    nav {
        padding: 10px 15px;
        gap: 15px;
    }

    nav a {
        font-size: 12px;
    }

    /* Contact Section */
    .contact-header h1 {
        font-size: 30px;
    }

    .contact-wrapper {
        padding: 20px;
    }

    .contact-info {
        padding: 32px 28px;
        min-height: auto;
    }

    .contact-info h2 {
        font-size: 22px;
        margin-bottom: 36px;
    }

    .contact-item {
        margin-bottom: 36px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .contact-item span {
        font-size: 15px;
        line-height: 1.5;
    }

    .contact-decoration {
        bottom: 100px;
        right: 30px;
        width: 160px;
        height: 160px;
        opacity: 0.5;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
    }

    .contact-social {
        margin-top: 20px;
        gap: 18px;
    }

    .contact-social a {
        width: 44px;
        height: 44px;
    }

    .contact-social svg {
        width: 20px;
        height: 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-group.full-width {
        margin-bottom: 24px;
    }

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

    /* Footer */
    .footer {
        padding: 45px 18px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    /* Header */
    .logo img {
        height: 30px;
    }

    nav {
        padding: 8px 12px;
        gap: 10px;
    }

    nav a {
        font-size: 11px;
        padding: 4px 0;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 24px;
        height: 24px;
    }

    .social-icons svg {
        width: 14px;
        height: 14px;
    }

    /* Contact Section */
    .contact-section {
        padding: 30px 15px 50px 15px;
    }

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

    .contact-header h1 {
        font-size: 26px;
    }

    .contact-header p {
        font-size: 13px;
    }

    .contact-wrapper {
        padding: 16px;
        border-radius: 12px;
    }

    .contact-container {
        gap: 24px;
    }

    .contact-info {
        padding: 28px 24px;
        border-radius: 12px;
        min-height: auto;
    }

    .contact-info h2 {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .contact-item {
        margin-bottom: 32px;
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .contact-icon {
        width: 26px;
        height: 26px;
    }

    .contact-item span {
        font-size: 14px;
        word-break: break-word;
        line-height: 1.5;
    }

    .contact-decoration {
        bottom: 90px;
        right: 25px;
        width: 140px;
        height: 140px;
        opacity: 0.4;
    }

    .circle-1 {
        width: 130px;
        height: 130px;
    }

    .circle-2 {
        width: 85px;
        height: 85px;
    }

    .contact-social {
        gap: 16px;
        margin-top: 16px;
    }

    .contact-social a {
        width: 40px;
        height: 40px;
    }

    .contact-social svg {
        width: 18px;
        height: 18px;
    }

    /* Contact Form */
    .contact-form {
        padding: 20px;
    }

    .form-row {
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-group.full-width {
        margin-bottom: 28px;
    }

    .contact-submit-btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 6px;
    }

    /* Footer */
    .footer {
        padding: 40px 15px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-logo {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-copyright {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 14px;
    }

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

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-right h4 {
        font-size: 14px;
    }

    .footer-email-input {
        padding: 10px 14px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-demo-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    nav {
        gap: 8px;
        padding: 6px 10px;
    }

    nav a {
        font-size: 10px;
    }

    .contact-header h1 {
        font-size: 22px;
    }

    .contact-info h2 {
        font-size: 16px;
    }

    .contact-item span {
        font-size: 12px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE STYLES FOR ABOUT PAGE
   ======================================== */

/* iPad Pro and smaller desktops (max-width: 1439px) - ABOUT */
@media (max-width: 1439px) {
    .about-section {
        padding: 120px 40px;
    }
}

/* iPad 11 inch and similar tablets (max-width: 1200px) - ABOUT */
@media (max-width: 1200px) {
    .about-section {
        padding: 100px 30px;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .about-content h1 {
        font-size: 48px;
    }

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

    .about-images {
        gap: 16px;
    }

    .image-1 {
        height: 200px;
    }

    .image-2 {
        height: 240px;
    }

    .image-3 {
        height: 160px;
    }

    .image-4 {
        height: 160px;
    }
}

/* Tablet and Below (max-width: 1024px) - ABOUT */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 30px;
    }

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

    .about-content {
        order: 1;
        text-align: left;
    }

    .about-content h1 {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .about-images {
        order: 2;
        gap: 15px;
    }

    .image-1 {
        height: 180px;
    }

    .image-2 {
        height: 220px;
    }

    .image-3 {
        height: 140px;
    }

    .image-4 {
        height: 140px;
    }
}

/* Mobile Large (max-width: 768px) - ABOUT */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        gap: 40px;
    }

    .about-content h1 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .about-images {
        gap: 12px;
    }

    .image-1 {
        height: 160px;
    }

    .image-2 {
        height: 200px;
    }

    .image-3 {
        height: 120px;
    }

    .image-4 {
        height: 120px;
    }
}

/* Mobile Medium (max-width: 600px) - ABOUT */
@media (max-width: 600px) {
    .about-section {
        padding: 50px 20px;
    }

    .about-container {
        gap: 35px;
    }

    .about-content h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

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

    .about-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .image-1 {
        grid-column: 1;
        height: 200px;
    }

    .image-2 {
        grid-column: 1;
        height: 220px;
    }

    .image-3 {
        grid-column: 1;
        height: 180px;
    }

    .image-4 {
        grid-column: 1;
        height: 180px;
    }
}

/* Mobile Small (max-width: 480px) - ABOUT */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-container {
        gap: 30px;
    }

    .about-content h1 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .about-content p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .about-images {
        gap: 10px;
    }

    .image-1 {
        height: 180px;
    }

    .image-2 {
        height: 200px;
    }

    .image-3 {
        height: 160px;
    }

    .image-4 {
        height: 160px;
    }

    .about-image {
        border-radius: 12px;
    }
}

/* Extra Small Mobile (max-width: 360px) - ABOUT */
@media (max-width: 360px) {
    .about-section {
        padding: 35px 15px;
    }

    .about-content h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .about-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .image-1 {
        height: 160px;
    }

    .image-2 {
        height: 180px;
    }

    .image-3 {
        height: 140px;
    }

    .image-4 {
        height: 140px;
    }
}

/* ========================================
   RESPONSIVE STYLES FOR BLOG PAGE
   ======================================== */

/* iPad Pro and smaller desktops (max-width: 1439px) - BLOG */
@media (max-width: 1439px) {
    .blog-hero {
        padding: 120px 40px;
    }

    .blog-posts {
        padding: 100px 40px;
    }

    .blog-horizontal {
        padding: 0 40px 100px 40px;
    }

    .all-blog-posts {
        padding: 0 40px 100px 40px;
    }
}

/* iPad 11 inch and similar tablets (max-width: 1200px) - BLOG */
@media (max-width: 1200px) {
    .blog-hero {
        padding: 100px 30px;
    }

    .blog-hero-content {
        gap: 60px;
    }

    .blog-hero-left h1 {
        font-size: 56px;
    }

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

    .blog-hero-circle {
        width: 420px;
        height: 420px;
    }

    /* Blog Posts Section */
    .blog-posts {
        padding: 80px 30px;
    }

    .blog-posts-container h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .featured-post-image {
        height: 220px;
    }

    .featured-post-content h3 {
        font-size: 26px;
    }

    .small-post-image {
        width: 260px;
        height: 210px;
    }

    .small-post-content h4 {
        font-size: 20px;
    }

    /* Horizontal Post */
    .blog-horizontal {
        padding: 0 30px 80px 30px;
    }

    .horizontal-post-image {
        flex: 0 0 550px;
        height: 280px;
    }

    .horizontal-post-content h3 {
        font-size: 32px;
    }

    /* All Blog Posts */
    .all-blog-posts {
        padding: 0 30px 80px 30px;
    }

    .all-blog-posts-container h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .all-posts-grid {
        gap: 50px 28px;
    }

    .blog-post-image {
        height: 220px;
    }

    .blog-post-content h4 {
        font-size: 20px;
    }
}

/* Tablet and Below (max-width: 1024px) - BLOG */
@media (max-width: 1024px) {
    /* Blog Hero */
    .blog-hero {
        padding: 80px 30px;
    }

    .blog-hero-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .blog-hero-left h1 {
        font-size: 48px;
    }

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

    .blog-hero-right {
        align-self: center;
    }

    .blog-hero-circle {
        width: 380px;
        height: 380px;
    }

    /* Blog Posts Grid */
    .blog-posts {
        padding: 70px 30px;
    }

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

    .featured-post-image {
        height: 300px;
    }

    .featured-post-content h3 {
        font-size: 28px;
    }

    .small-posts {
        gap: 40px;
    }

    .small-post {
        flex-direction: column;
    }

    .small-post-image {
        width: 100%;
        height: 280px;
    }

    /* Horizontal Post */
    .blog-horizontal {
        padding: 0 30px 70px 30px;
    }

    .horizontal-post {
        flex-direction: column;
        gap: 40px;
    }

    .horizontal-post-image {
        flex: auto;
        width: 100%;
        height: 320px;
    }

    .horizontal-post-content h3 {
        font-size: 32px;
    }

    /* All Blog Posts */
    .all-blog-posts {
        padding: 0 30px 70px 30px;
    }

    .all-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

/* Mobile Large (max-width: 768px) - BLOG */
@media (max-width: 768px) {
    /* Blog Hero */
    .blog-hero {
        padding: 60px 20px;
    }

    .blog-hero-content {
        gap: 40px;
    }

    .blog-hero-left h1 {
        font-size: 38px;
        line-height: 1.2;
    }

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

    .blog-hero-circle {
        width: 320px;
        height: 320px;
    }

    .blog-decoration-1 {
        width: 50px;
        height: 50px;
    }

    .blog-decoration-2 {
        width: 35px;
        height: 35px;
    }

    .blog-decoration-3 {
        width: 40px;
        height: 40px;
    }

    /* Blog Posts */
    .blog-posts {
        padding: 60px 20px;
    }

    .blog-posts-container h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .featured-post-image {
        height: 240px;
    }

    .featured-post-content h3 {
        font-size: 24px;
    }

    .featured-post-content .post-description {
        font-size: 15px;
    }

    .small-post-image {
        height: 240px;
    }

    .small-post-content h4 {
        font-size: 20px;
    }

    /* Horizontal Post */
    .blog-horizontal {
        padding: 0 20px 60px 20px;
    }

    .horizontal-post {
        gap: 32px;
    }

    .horizontal-post-image {
        height: 260px;
    }

    .horizontal-post-content h3 {
        font-size: 28px;
    }

    .horizontal-post-content .post-description {
        font-size: 15px;
    }

    /* All Blog Posts */
    .all-blog-posts {
        padding: 0 20px 60px 20px;
    }

    .all-blog-posts-container h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .all-posts-grid {
        gap: 36px 20px;
    }

    .blog-post-image {
        height: 200px;
    }

    .blog-post-content h4 {
        font-size: 18px;
    }
}

/* Mobile Medium (max-width: 600px) - BLOG */
@media (max-width: 600px) {
    /* Blog Hero */
    .blog-hero {
        padding: 50px 20px;
    }

    .blog-hero-content {
        gap: 35px;
    }

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

    .blog-hero-left h1 br {
        display: none;
    }

    .blog-hero-left p {
        font-size: 14px;
    }

    .blog-hero-left p br {
        display: none;
    }

    .blog-hero-circle {
        width: 280px;
        height: 280px;
    }

    .blog-hero-circle img {
        width: 65%;
    }

    .blog-decoration-1 {
        width: 45px;
        height: 45px;
    }

    .blog-decoration-2 {
        width: 30px;
        height: 30px;
    }

    .blog-decoration-3 {
        width: 35px;
        height: 35px;
    }

    /* Blog Posts */
    .blog-posts {
        padding: 50px 20px;
    }

    .blog-posts-container h2 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .featured-post-image {
        height: 200px;
        margin-bottom: 20px;
    }

    .featured-post-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .featured-post-content .post-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .post-meta {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .small-posts {
        gap: 32px;
    }

    .small-post-image {
        height: 200px;
        margin-bottom: 16px;
    }

    .small-post-content h4 {
        font-size: 18px;
    }

    .small-post-content .post-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* Horizontal Post */
    .blog-horizontal {
        padding: 0 20px 50px 20px;
    }

    .horizontal-post {
        gap: 24px;
    }

    .horizontal-post-image {
        height: 220px;
        border-radius: 10px;
    }

    .horizontal-post-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .horizontal-post-content .post-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* All Blog Posts */
    .all-blog-posts {
        padding: 0 20px 50px 20px;
    }

    .all-blog-posts-container h2 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .all-posts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-post-image {
        height: 220px;
        margin-bottom: 20px;
    }

    .blog-post-content h4 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .blog-post-content .post-description {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

/* Mobile Small (max-width: 480px) - BLOG */
@media (max-width: 480px) {
    /* Blog Hero */
    .blog-hero {
        padding: 40px 15px;
    }

    .blog-hero-content {
        gap: 30px;
    }

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

    .blog-hero-left p {
        font-size: 13px;
    }

    .blog-hero-circle {
        width: 240px;
        height: 240px;
    }

    .blog-decoration-1 {
        width: 40px;
        height: 40px;
        top: 5%;
    }

    .blog-decoration-2 {
        width: 28px;
        height: 28px;
    }

    .blog-decoration-3 {
        width: 32px;
        height: 32px;
    }

    /* Blog Posts */
    .blog-posts {
        padding: 40px 15px;
    }

    .blog-posts-container h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .featured-post-image {
        height: 180px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .featured-post-content h3 {
        font-size: 20px;
        gap: 8px;
    }

    .post-arrow {
        font-size: 20px;
    }

    .featured-post-content .post-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .post-meta {
        font-size: 12px;
    }

    .small-posts {
        gap: 28px;
    }

    .small-post-image {
        height: 180px;
        border-radius: 10px;
    }

    .small-post-content h4 {
        font-size: 17px;
        gap: 6px;
    }

    .small-post-content .post-description {
        font-size: 13px;
    }

    .tag {
        padding: 3px 10px;
        font-size: 12px;
    }

    /* Horizontal Post */
    .blog-horizontal {
        padding: 0 15px 40px 15px;
    }

    .horizontal-post {
        gap: 20px;
    }

    .horizontal-post-image {
        height: 200px;
        border-radius: 10px;
    }

    .horizontal-post-content h3 {
        font-size: 22px;
        gap: 8px;
    }

    .horizontal-post-content .post-arrow {
        font-size: 22px;
    }

    .horizontal-post-content .post-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* All Blog Posts */
    .all-blog-posts {
        padding: 0 15px 40px 15px;
    }

    .all-blog-posts-container h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .all-posts-grid {
        gap: 28px;
    }

    .blog-post-image {
        height: 200px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .blog-post-content h4 {
        font-size: 18px;
        gap: 6px;
    }

    .blog-post-content .post-arrow {
        font-size: 18px;
    }

    .blog-post-content .post-description {
        font-size: 13px;
        margin-bottom: 14px;
    }
}

/* Extra Small Mobile (max-width: 360px) - BLOG */
@media (max-width: 360px) {
    /* Blog Hero */
    .blog-hero {
        padding: 35px 15px;
    }

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

    .blog-hero-left p {
        font-size: 12px;
    }

    .blog-hero-circle {
        width: 220px;
        height: 220px;
    }

    /* Blog Posts */
    .blog-posts {
        padding: 35px 15px;
    }

    .blog-posts-container h2 {
        font-size: 20px;
    }

    .featured-post-image {
        height: 160px;
    }

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

    .small-post-image {
        height: 160px;
    }

    .small-post-content h4 {
        font-size: 16px;
    }

    /* Horizontal Post */
    .blog-horizontal {
        padding: 0 15px 35px 15px;
    }

    .horizontal-post-image {
        height: 180px;
    }

    .horizontal-post-content h3 {
        font-size: 20px;
    }

    /* All Blog Posts */
    .all-blog-posts {
        padding: 0 15px 35px 15px;
    }

    .all-blog-posts-container h2 {
        font-size: 20px;
    }

    .blog-post-image {
        height: 180px;
    }

    .blog-post-content h4 {
        font-size: 16px;
    }

    .post-meta {
        font-size: 11px;
    }

    .blog-post-content .post-description {
        font-size: 12px;
    }

    .tag {
        padding: 2px 8px;
        font-size: 11px;
    }
}

/* ========================================
   RESPONSIVE STYLES FOR BLOG DETAILS PAGE
   ======================================== */

/* iPad Pro and smaller desktops (max-width: 1439px) - BLOG DETAILS */
@media (max-width: 1439px) {
    .blog-detail-hero {
        padding: 60px 40px 0 40px;
    }

    .blog-detail-content {
        padding: 80px 40px;
    }
}

/* iPad 11 inch and similar tablets (max-width: 1200px) - BLOG DETAILS */
@media (max-width: 1200px) {
    .blog-detail-hero {
        padding: 60px 30px 0 30px;
    }

    .blog-detail-hero-image {
        height: 360px;
    }

    .blog-detail-content {
        padding: 70px 30px;
    }

    .blog-detail-container {
        gap: 50px;
    }

    .blog-detail-sidebar {
        flex: 0 0 380px;
    }

    .blog-detail-article {
        padding: 40px;
    }

    .article-title {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .article-body {
        font-size: 15px;
    }

    .related-post-card {
        padding: 18px;
    }

    .related-post-image {
        flex: 0 0 110px;
        height: 110px;
    }

    .related-post-content h4 {
        font-size: 16px;
    }
}

/* Tablet and Below (max-width: 1024px) - BLOG DETAILS */
@media (max-width: 1024px) {
    .blog-detail-hero {
        padding: 50px 30px 0 30px;
    }

    .blog-detail-hero-image {
        height: 340px;
    }

    .blog-detail-content {
        padding: 60px 30px;
    }

    .blog-detail-container {
        flex-direction: column;
        gap: 50px;
    }

    .blog-detail-main {
        flex: auto;
    }

    .blog-detail-sidebar {
        flex: auto;
        width: 100%;
    }

    .blog-detail-article {
        padding: 36px;
    }

    .article-title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .article-body {
        font-size: 15px;
        line-height: 1.7;
    }

    .related-posts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-post-card {
        flex-direction: column;
        padding: 20px;
    }

    .related-post-image {
        width: 100%;
        flex: auto;
        height: 180px;
    }

    .related-post-content h4 {
        font-size: 18px;
    }
}

/* Mobile Large (max-width: 768px) - BLOG DETAILS */
@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 40px 20px 0 20px;
    }

    .blog-detail-hero-image {
        height: 280px;
        border-radius: 20px;
    }

    .blog-detail-content {
        padding: 50px 20px;
    }

    .blog-detail-container {
        gap: 40px;
    }

    .blog-detail-article {
        padding: 32px;
        border-radius: 20px;
    }

    .article-meta {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .article-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .article-body {
        font-size: 14px;
        line-height: 1.7;
    }

    .article-body p {
        margin-bottom: 20px;
    }

    .related-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-post-card {
        padding: 18px;
        border-radius: 14px;
    }

    .related-post-image {
        height: 160px;
        border-radius: 10px;
    }

    .related-post-content h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .related-post-content .post-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .related-post-content .post-meta {
        font-size: 12px;
    }
}

/* Mobile Medium (max-width: 600px) - BLOG DETAILS */
@media (max-width: 600px) {
    .blog-detail-hero {
        padding: 35px 20px 0 20px;
    }

    .blog-detail-hero-image {
        height: 240px;
        border-radius: 16px;
    }

    .blog-detail-content {
        padding: 40px 20px;
    }

    .blog-detail-container {
        gap: 35px;
    }

    .blog-detail-article {
        padding: 28px;
        border-radius: 18px;
    }

    .article-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .article-body {
        font-size: 14px;
    }

    .article-body p {
        margin-bottom: 18px;
    }

    .related-post-card {
        padding: 16px;
    }

    .related-post-image {
        height: 140px;
    }

    .related-post-content h4 {
        font-size: 16px;
    }

    .related-post-content .post-description {
        font-size: 13px;
        margin-bottom: 8px;
    }
}

/* Mobile Small (max-width: 480px) - BLOG DETAILS */
@media (max-width: 480px) {
    .blog-detail-hero {
        padding: 30px 15px 0 15px;
    }

    .blog-detail-hero-image {
        height: 220px;
        border-radius: 14px;
    }

    .blog-detail-content {
        padding: 35px 15px;
    }

    .blog-detail-container {
        gap: 30px;
    }

    .blog-detail-article {
        padding: 24px;
        border-radius: 16px;
        border: 1px solid #e5e5e5;
    }

    .article-meta {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .article-title {
        font-size: 24px;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .article-body {
        font-size: 13px;
        line-height: 1.6;
    }

    .article-body p {
        margin-bottom: 16px;
    }

    .related-posts {
        gap: 18px;
    }

    .related-post-card {
        padding: 14px;
        border-radius: 12px;
    }

    .related-post-image {
        height: 130px;
        border-radius: 10px;
    }

    .related-post-content h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .related-post-content .post-description {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .related-post-content .post-meta {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .tag {
        padding: 2px 8px;
        font-size: 11px;
    }
}

/* Extra Small Mobile (max-width: 360px) - BLOG DETAILS */
@media (max-width: 360px) {
    .blog-detail-hero {
        padding: 25px 15px 0 15px;
    }

    .blog-detail-hero-image {
        height: 200px;
        border-radius: 12px;
    }

    .blog-detail-content {
        padding: 30px 15px;
    }

    .blog-detail-container {
        gap: 25px;
    }

    .blog-detail-article {
        padding: 20px;
    }

    .article-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .article-body {
        font-size: 12px;
    }

    .article-body p {
        margin-bottom: 14px;
    }

    .related-posts {
        gap: 16px;
    }

    .related-post-card {
        padding: 12px;
    }

    .related-post-image {
        height: 120px;
    }

    .related-post-content h4 {
        font-size: 14px;
    }

    .related-post-content .post-description {
        font-size: 11px;
    }

    .related-post-content .post-meta {
        font-size: 10px;
    }
}

/* ========================================
   RESPONSIVE STYLES FOR INDEX (HOME) PAGE
   ======================================== */

/* iPad Pro and smaller desktops (max-width: 1439px) - INDEX */
@media (max-width: 1439px) {
    .hero {
        padding-left: 40px;
        padding-top: 200px;
        padding-bottom: 180px;
    }

    .features {
        padding: 100px 40px;
    }

    .production {
        padding: 100px 40px;
    }

    .journey {
        padding: 70px 40px;
    }

    .cta {
        padding: 80px 40px;
    }

    .competitors {
        padding: 80px 40px;
    }

    .blog {
        padding: 80px 40px;
    }
}

/* iPad 11 inch and similar tablets (max-width: 1200px) - INDEX */
@media (max-width: 1200px) {
    .hero {
        padding-left: 30px;
        padding-top: 180px;
        padding-bottom: 160px;
        max-width: 800px;
    }

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

    .hero .hero-afara {
        font-size: 64px;
    }

    /* Features */
    .features {
        padding: 90px 30px;
    }

    .features-header h2 {
        font-size: 42px;
    }

    .features-content {
        gap: 25px;
    }

    /* Production */
    .production {
        padding: 90px 30px;
    }

    .production h2 {
        font-size: 42px;
    }

    .production-content {
        gap: 25px;
    }

    /* Journey */
    .journey {
        padding: 60px 30px;
    }

    .journey-text-box h2 {
        font-size: 34px;
    }

    /* CTA */
    .cta {
        padding: 70px 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    /* Competitors */
    .competitors {
        padding: 70px 30px;
    }

    .competitors h2 {
        font-size: 38px;
    }

    /* Blog */
    .blog {
        padding: 70px 30px;
    }

    .blog h2 {
        font-size: 48px;
    }
}

/* Tablet and Below (max-width: 1024px) - INDEX */
@media (max-width: 1024px) {
    /* Hero */
    .hero {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 120px;
        padding-bottom: 100px;
        max-width: 100%;
        text-align: center;
    }

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

    .hero .hero-afara {
        font-size: 56px;
    }

    /* Features */
    .features {
        padding: 80px 30px;
    }

    .features-header h2 {
        font-size: 38px;
    }

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

    .features-left {
        width: 100%;
    }

    .features-right {
        width: 100%;
    }

    .robot-card {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Production */
    .production {
        padding: 80px 30px;
    }

    .production h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }

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

    .production-left,
    .production-right {
        width: 100%;
    }

    .production-grid-row.row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .production-grid-row.row-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Journey */
    .journey {
        padding: 60px 30px;
    }

    .journey-row {
        flex-direction: column;
        gap: 15px;
    }

    .journey-row-2 .journey-box-40,
    .journey-row-2 .journey-box-20,
    .journey-row-3 .journey-box-40,
    .journey-row-3 .journey-box-20 {
        flex: 1;
    }

    /* CTA */
    .cta {
        padding: 70px 30px;
    }

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

    /* Competitors */
    .competitors {
        padding: 70px 30px;
    }

    .competitors h2 {
        font-size: 34px;
        margin-bottom: 60px;
    }

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

    /* Blog */
    .blog {
        padding: 70px 30px;
    }

    .blog h2 {
        font-size: 42px;
    }

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

/* Mobile Large (max-width: 768px) - INDEX */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: 80px 20px 60px 20px;
    }

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

    .hero .hero-afara {
        font-size: 44px;
    }

    /* Features */
    .features {
        padding: 60px 20px;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-header h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .features-header p {
        font-size: 15px;
    }

    .features-left {
        gap: 16px;
    }

    .features-column {
        gap: 16px;
    }

    .feature-card {
        padding: 18px;
    }

    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 12px;
        margin-bottom: 32px;
    }

    .feature-card-short img {
        height: 100px;
    }

    .feature-card-tall img {
        height: 160px;
    }

    .robot-card {
        padding: 26px;
    }

    .robot-card h3 {
        font-size: 28px;
    }

    .robot-card p {
        font-size: 15px;
    }

    /* Production */
    .production {
        padding: 60px 20px;
    }

    .production h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .production-hero-card {
        min-height: 280px;
    }

    .production-hero-text h3 {
        font-size: 24px;
    }

    .country-card {
        padding: 20px;
    }

    .country-flag {
        font-size: 28px;
        width: 42px;
        height: 42px;
    }

    .country-header h3 {
        font-size: 20px;
    }

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

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

    .country-card:not(.country-card-large) .stat-value {
        font-size: 22px;
    }

    /* Journey */
    .journey {
        padding: 50px 20px;
    }

    .journey-row {
        gap: 12px;
    }

    .journey-text-box {
        padding: 25px 28px;
    }

    .journey-text-box h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .journey-text-box p {
        font-size: 14px;
    }

    .journey-image-box {
        padding: 20px;
        gap: 16px;
    }

    .journey-image-box-center {
        padding: 20px;
    }

    .journey-content h3 {
        font-size: 15px;
    }

    .journey-content p {
        font-size: 11px;
    }

    /* CTA */
    .cta {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 40px;
    }

    /* Competitors */
    .competitors {
        padding: 60px 20px;
    }

    .competitors h2 {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .competitors-grid {
        gap: 20px;
    }

    .competitor-card {
        padding: 40px 32px;
    }

    .competitor-icon {
        height: 80px;
        margin-bottom: 24px;
    }

    .competitor-icon svg {
        width: 80px;
        height: 80px;
    }

    .competitor-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

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

    /* Blog */
    .blog {
        padding: 60px 20px;
    }

    .blog h2 {
        font-size: 36px;
    }

    .blog-description {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 24px;
    }

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

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

/* Mobile Medium (max-width: 600px) - INDEX */
@media (max-width: 600px) {
    /* Hero */
    .hero {
        padding: 60px 20px 50px 20px;
    }

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

    .hero .hero-afara {
        font-size: 38px;
    }

    /* Features */
    .features {
        padding: 50px 20px;
    }

    .features-header h2 {
        font-size: 28px;
    }

    .features-header p {
        font-size: 14px;
    }

    .features-left {
        flex-direction: column;
    }

    .features-column {
        width: 100%;
    }

    /* Production */
    .production {
        padding: 50px 20px;
    }

    .production h2 {
        font-size: 26px;
    }

    .production-grid-row.row-3 {
        grid-template-columns: 1fr;
    }

    /* Journey */
    .journey {
        padding: 40px 20px;
    }

    .journey-text-box h2 {
        font-size: 26px;
    }

    .journey-image-box img {
        width: 50%;
    }

    .journey-image-box-center img {
        width: 70%;
    }

    /* CTA */
    .cta {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    /* Competitors */
    .competitors {
        padding: 50px 20px;
    }

    .competitors h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

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

    /* Blog */
    .blog {
        padding: 50px 20px;
    }

    .blog h2 {
        font-size: 30px;
    }
}

/* Mobile Small (max-width: 480px) - INDEX */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 50px 15px 40px 15px;
    }

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

    .hero .hero-afara {
        font-size: 32px;
    }

    /* Features */
    .features {
        padding: 40px 15px;
    }

    .features-header h2 {
        font-size: 24px;
    }

    .features-header p {
        font-size: 13px;
    }

    .feature-card {
        padding: 16px;
        border-radius: 20px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 11px;
        margin-bottom: 28px;
    }

    .feature-card .card-link {
        width: 32px;
        height: 32px;
    }

    .feature-card .card-link svg {
        width: 16px;
        height: 16px;
    }

    .robot-card {
        padding: 22px;
    }

    .robot-card h3 {
        font-size: 24px;
    }

    .robot-card p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .view-3d-btn {
        padding: 10px 28px;
        font-size: 15px;
    }

    /* Production */
    .production {
        padding: 40px 15px;
    }

    .production h2 {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .production-hero-text {
        padding: 30px;
    }

    .production-hero-text h3 {
        font-size: 20px;
    }

    .country-card {
        padding: 18px;
    }

    .country-header h3 {
        font-size: 18px;
    }

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

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

    .country-card:not(.country-card-large) .stat-value {
        font-size: 20px;
    }

    /* Journey */
    .journey {
        padding: 35px 15px;
    }

    .journey-text-box {
        padding: 22px 24px;
    }

    .journey-text-box h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .journey-text-box p {
        font-size: 13px;
    }

    .journey-image-box,
    .journey-image-box-center {
        padding: 18px;
    }

    .journey-content h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .journey-content p {
        font-size: 10px;
    }

    /* CTA */
    .cta {
        padding: 40px 15px;
    }

    .cta-content h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .cta-button {
        padding: 12px 36px;
        font-size: 15px;
    }

    /* Competitors */
    .competitors {
        padding: 40px 15px;
    }

    .competitors h2 {
        font-size: 20px;
        margin-bottom: 36px;
    }

    .competitor-card {
        padding: 35px 28px;
    }

    .competitor-icon {
        height: 70px;
        margin-bottom: 20px;
    }

    .competitor-icon svg {
        width: 70px;
        height: 70px;
    }

    .competitor-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .competitor-card p {
        font-size: 13px;
    }

    /* Blog */
    .blog {
        padding: 40px 15px;
    }

    .blog h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .blog-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .blog-grid {
        gap: 20px;
        margin-bottom: 32px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

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

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

/* Extra Small Mobile (max-width: 360px) - INDEX */
@media (max-width: 360px) {
    /* Hero */
    .hero {
        padding: 40px 15px 35px 15px;
    }

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

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

    /* Features */
    .features {
        padding: 35px 15px;
    }

    .features-header h2 {
        font-size: 22px;
    }

    .robot-card h3 {
        font-size: 22px;
    }

    /* Production */
    .production {
        padding: 35px 15px;
    }

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

    .production-hero-text h3 {
        font-size: 18px;
    }

    /* Journey */
    .journey {
        padding: 30px 15px;
    }

    .journey-text-box h2 {
        font-size: 22px;
    }

    /* CTA */
    .cta {
        padding: 35px 15px;
    }

    .cta-content h2 {
        font-size: 18px;
    }

    /* Competitors */
    .competitors {
        padding: 35px 15px;
    }

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

    /* Blog */
    .blog {
        padding: 35px 15px;
    }

    .blog h2 {
        font-size: 24px;
    }

    .blog-image {
        height: 180px;
    }
}