
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Helvetica', Arial, sans-serif;
    }
    
    body {
        color: #333;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    .hero {
        min-height: 100vh;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/f23c2b71cecd94c8edb498cd379a5719f9a813ba.png ") no-repeat center center/cover;
        display: flex;
        align-items: center;
        padding: 0 10%;
        color: #fff;
        position: relative;
    }
    
    .hero-content {
        max-width: 800px;
        margin-top: 100px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .dimmed {
        opacity: 0.7;
        text-decoration: underline;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        font-weight: 400;
        line-height: 1.5;
    }
    
    .cta-button {
        display: inline-block;
        background-color: #1C75BA;
        color: white;
        padding: 15px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    }
    
    .cta-button:hover {
        background-color: #0052cc;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
    }
    
    .back-button {
        position: absolute;
        bottom: 40px;
        left: 5%;
        display: inline-flex;
        align-items: center;
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 10px 20px;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .back-button:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }
    
    .back-button i {
        margin-right: 8px;
    }
    
    /* Service Detail Content */
    .service-detail {
        padding: 80px 5%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .detail-content h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: #1a365d;
    }
    
    .detail-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #444;
        margin-bottom: 25px;
    }
    
    .feature-list {
        list-style-type: none;
        margin-bottom: 30px;
    }
    
    .feature-list li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }
    
    .feature-list li i {
        color: #1C75BA;
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .detail-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Contact Section - FIXED */
    .contact-section {
        padding: 80px 5%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-top: 40px;
        width: 100%;
    }
    
    .image-column {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 20px;
    }
    
    .image-column img {
        width: 100%;
        max-width: 650px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .form-column {
        background: white;
        border-radius: 12px;
        padding: 40px;
    }
    
    .form-header {
        text-align: left;
        margin-bottom: 30px;
    }
    
    .form-title {
        font-size: 28px;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 12px;
    }
    
    .form-subtitle {
        font-size: 16px;
        color: #666;
        line-height: 1.5;
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
    }
    
    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .form-group-full {
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 8px;
        color: #444;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 14px 16px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 15px;
        transition: border-color 0.3s;
    }
    
    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: #1C75BA;
        outline: none;
    }
    
    .form-textarea {
        min-height: 120px;
        resize: vertical;
        margin-top: 8px;
    }
    
    .phone-input-container {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .phone-prefix {
        padding: 0 12px;
        height: 100%;
        display: flex;
        align-items: center;
        background: #f5f5f5;
        border-right: 1px solid #ddd;
        font-size: 15px;
    }
    
    .phone-input {
        flex: 1;
        border: none;
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .phone-input:focus {
        outline: none;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .form-checkbox {
        margin-top: 4px;
    }
    
    .checkbox-label {
        font-size: 12px;
        color: #666;
        line-height: 1.5;
    }
    
    .privacy-link {
        color: #1C75BA;
        text-decoration: none;
    }
    
    .privacy-link:hover {
        text-decoration: underline;
    }
    
    .submit-button {
        background-color: #1C75BA;
        color: white;
        border: none;
        border-radius: 6px;
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .submit-button:hover {
        background-color: #0052cc;
    }
    
    /* App Development Section Styles */
    .app-dev-section {
        padding: 60px 5% 80px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .back-link {
        display: inline-flex;
        align-items: center;
        color: #666;
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 40px;
        transition: color 0.3s ease;
    }
    
    .back-link:hover {
        color: #1C75BA;
    }
    
    .back-link i {
        margin-right: 8px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .gradient-text {
        background: linear-gradient(90deg, #1C75BA, #00c6ff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .section-description {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    
    .feature-column {
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .feature-column:first-child {
        background-color: #F5F5F5;
        border-radius: 12px 0 0 12px;
    }
    
    .feature-column:nth-child(2) {
        background-color: #FFFFFF;
    }
    
    .feature-column:last-child {
        background-color: #E2E7F1;
        border-radius: 0 12px 12px 0;
    }
    
    .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #222;
    }
    
    .feature-description {
        color: #444;
        line-height: 1.6;
    }
    
    /* Blog Section Styles */
    .blog-section {
        padding: 2rem 5%;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .blog-header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .search-container {
        position: relative;
        flex: 0 0 auto;
    }
    
    .search-bar {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        border-radius: 25px;
        border: 1px solid #ddd;
        width: 250px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .search-bar:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    }
    
    .search-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #777;
    }
    
    .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tag {
        background-color: #e9ecef;
        color: #495057;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .tag.active {
        background-color: #4a90e2;
        color: white;
    }
    
    .featured-blog {
        display: flex;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 3rem;
    }
    
    .featured-content {
        flex: 0 0 55%;
        padding: 2rem;
        display: flex;
        flex-direction: column;
    }
    
    .featured-image {
        flex: 0 0 45%;
        overflow: hidden;
    }
    
    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .featured-blog:hover .featured-image img {
        transform: scale(1.05);
    }
    
    .featured-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #212529;
    }
    
    .featured-excerpt {
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }
    
    .featured-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .featured-date {
        color: #6c757d;
        font-size: 0.9rem;
    }
    
    .read-more {
        color: #4a90e2;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: gap 0.3s ease;
    }
    
    .read-more:hover {
        gap: 0.75rem;
    }
    
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .blog-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .card-image {
        height: 200px;
        overflow: hidden;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .blog-card:hover .card-image img {
        transform: scale(1.1);
    }
    
    .card-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        min-height: 250px;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: #212529;
    }
    
    .card-excerpt {
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }
    
    .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .card-date {
        color: #6c757d;
        font-size: 0.85rem;
    }
    
    /* Who We Are Section */
    .tyncad-whoweare-section {
        padding: 80px 10%;
        margin: 0 auto;
        padding-bottom: 0px;
    }
    
    .tyncad-whoweare-heading {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.8rem;
        font-weight: 700;
    }
    
    .tyncad-whoweare-black {
        color: #000;
    }
    
    .tyncad-whoweare-gradient {
        background: linear-gradient(90deg, #1C75BA, #00c6ff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .tyncad-whoweare-content {
        color: #000;
        line-height: 1.7;
        font-size: 1.1rem;
    }
    
    .tyncad-whoweare-content p {
        margin-bottom: 20px;
    }
    
    .tyncad-whoweare-list {
        margin-top: 25px;
        padding-left: 20px;
    }
    
    .tyncad-whoweare-list li {
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .tyncad-whoweare-list strong {
        color: #1C75BA;
    }
    
    /* Partnership Benefits Section */
    .partnership-benefits-section {
        margin: 0 auto;
        padding: 80px 10%;
        font-family: 'Helvetica', Arial, sans-serif;
    }
    
    .partnership-benefits-heading {
        text-align: center;
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 50px;
    }
    
    .pb-black {
        color: #000;
    }
    
    .pb-gradient {
        background: linear-gradient(90deg, #1C75BA, #00c6ff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .pb-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .pb-item {
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
    }
    
    .pb-bg-lightgray {
        background-color: #F2F2F2;
    }
    
    .pb-bg-white {
        background-color: #fff;
    }
    
    .pb-bg-blue {
        background-color: #E2E7F1;
    }
    
    .pb-rounded-left {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }
    
    .pb-rounded-right {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    
    .pb-number {
        font-size: 3rem;
        font-weight: 400;
        text-align: left;
        margin-bottom: 15px;
        color: #000;
        user-select: none;
    }
    
    .pb-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 12px;
        text-align: left;
        color: #000;
    }
    
    .pb-text {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.6;
        text-align: left;
        color: #333;
    }
    
    /* Impact Stories & Videos Section */
    .impact-stories-videos-section {
        margin: 0 auto;
        padding: 80px 5%;
        font-family: 'Helvetica', Arial, sans-serif;
        text-align: center;
        padding-top: 0px;
    }
    
    .isv-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .isv-blue {
        color: #1C75BA;
    }
    
    .isv-description {
        font-size: 1.1rem;
        color: #333;
        max-width: 700px;
        margin: 0 auto 40px;
    }
    
    .isv-tablist {
        display: inline-flex;
        background-color: #F2F2F2;
        border-radius: 30px;
        padding: 5px;
        position: relative;
        width: fit-content;
        user-select: none;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .isv-tab {
        background: none;
        border: none;
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #000;
        border-radius: 30px;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: color 0.3s ease;
        flex: 1;
        min-width: 150px;
    }
    
    .isv-tab:focus {
        outline: 2px solid #1C75BA;
        outline-offset: 2px;
    }
    
    .isv-tab-active {
        color: #fff;
    }
    
    .isv-tab-slider {
        position: absolute;
        top: 5px;
        bottom: 5px;
        width: 50%;
        background-color: #1C75BA;
        border-radius: 30px;
        transition: transform 0.3s ease;
        z-index: 1;
        left: 0;
    }
    
    .isv-content {
        margin-top: 40px;
    }
    
    .isv-hidden {
        display: none;
    }
    
    .isv-cards, .isv-video-thumbnails {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .isv-card, .isv-video-thumb {
        flex: 1;
        min-width: 300px;
        max-width: 460px;
    }
    
    .isv-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 30px 25px 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: left;
    }
    
    .isv-testimonial {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
        margin-bottom: 25px;
        font-style: italic;
    }
    
    .isv-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .isv-user-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .isv-profile-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .isv-user-details {
        display: flex;
        flex-direction: column;
    }
    
    .isv-user-name {
        font-weight: 700;
        font-size: 1rem;
        margin: 0;
        color: #000;
    }
    
    .isv-user-position {
        font-size: 0.85rem;
        color: #777;
        margin: 0;
    }
    
    .isv-stars {
        color: #FFD700;
        font-size: 18px;
        display: flex;
        gap: 2px;
    }
    
    .isv-video-thumb {
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .isv-video-thumb img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }
    
    .isv-video-thumb:focus,
    .isv-video-thumb:hover {
        transform: scale(1.03);
        outline: none;
    }
    
    /* Form Styles */
    .form-container {
        margin: 0 auto;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        padding: 10%;
        padding-top: 0px;
        padding-bottom: 50px;
    }
    
    .form-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: #000;
        text-align: center;
    }
    
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #2d3748;
    }
    
    .form-input, .form-select, .form-textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s;
    }
    
    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    }
    
    .full-width {
        grid-column: 1 / -1;
    }
    
    .form-textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin: 25px 0;
    }
    
    .form-checkbox {
        margin-top: 4px;
        flex-shrink: 0;
    }
    
    .checkbox-label {
        font-size: 0.95rem;
        color: #4a5568;
        line-height: 1.5;
    }
    
    .checkbox-label a {
        color: #3182ce;
        text-decoration: none;
    }
    
    .checkbox-label a:hover {
        text-decoration: underline;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px;
        background: #1C75BA;
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .submit-btn:hover {
        background: #1d4ed8;
    }
    
    .partner-header { 
        text-align: center; 
        padding: 0 5%;
    }
    
    .partner-header h2 { 
        color: #000; 
        margin-bottom: 15px; 
        font-size: 2.8rem;
    }
    
    .partner-header p { 
        color: #000; 
        max-width: 700px; 
        margin: 0 auto; 
        margin-bottom: 5%;
    }
    
    .stats-wrapper {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 0px;
        flex-wrap: wrap;
        padding: 0 5%;
    }
    
    .stats-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        height: 350px;
        margin: 0 auto;
        max-width: 800px;
        width: 100%;
    }
    
    .stat-bubble {
        position: absolute;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: rgba(28, 117, 186, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
        z-index: 1;
        cursor: pointer;
        overflow: hidden;
        background: white;
    }
    
    .stat-bubble::before {
        content: '';
        position: absolute;
        top: -10%;
        left: -10%;
        width: 120%;
        height: 120%;
        background: conic-gradient(
            transparent, transparent, transparent, transparent,
            rgba(255, 255, 255, 0.2)
        );
        z-index: -1;
        animation: rotate 4s linear infinite;
    }
    
    .stat-bubble::after {
        content: '';
        position: absolute;
        inset: 4px;
        background: inherit;
        border-radius: 50%;
        z-index: -1;
    }
    
    .stat-bubble:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    
    .stat-left {
        width: 180px;
        height: 180px;
        left: 95px;
        bottom: 70px;
        z-index: 2;
    }
    
    .stat-center {
        width: 240px;
        height: 240px;
        bottom: 40px;
        z-index: 3;
    }
    
    .stat-right {
        width: 180px;
        height: 180px;
        right: 95px;
        bottom: 70px;
        z-index: 2;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 5px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .stat-center .stat-number {
        font-size: 3.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
        font-weight: 500;
        max-width: 80%;
        text-align: center;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .stat-center .stat-label {
        font-size: 1.1rem;
    }
    
    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        border-radius: 16px;
        padding-bottom: 100px;
        overflow: hidden;
    }
    
    .contact-content {
        display: flex;
        flex-wrap: wrap;
    }
    
    .contact-info {
        flex: 1;
        padding: 50px;
        min-width: 300px;
    }
    
    .contact-image {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .contact-image img {
        width: 100%;
        max-width: 580px;
        height: 425px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .contact-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #000;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 40px;
        max-width: 400px;
        line-height: 1.5;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        background: #1C75BA;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    
    .contact-icon {
        color: white;
        font-size: 20px;
    }
    
    .contact-text {
        font-size: 1.05rem;
        color: #333;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .hero {
            padding: 0 8%;
            color: #FFFFFF;
        }
        
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
        }
        
        .section-title {
            font-size: 2.4rem;
        }
        
        .partnership-benefits-heading,
        .tyncad-whoweare-heading,
        .isv-title {
            font-size: 2.4rem;
        }
    }
    
    @media (max-width: 992px) {
        .hero {
            padding: 0 5%;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .detail-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .detail-image {
            order: -1;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .feature-column:first-child {
            border-radius: 12px 12px 0 0;
        }
        
        .feature-column:last-child {
            border-radius: 0 0 12px 12px;
        }
        
        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .featured-blog {
            flex-direction: column;
        }
        
        .featured-content, .featured-image {
            flex: 1 1 100%;
        }
        
        .featured-image {
            height: 300px;
        }
        
        .pb-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .pb-rounded-left:nth-child(odd) {
            border-radius: 12px 0 0 12px;
        }
        
        .pb-rounded-right:nth-child(even) {
            border-radius: 0 12px 12px 0;
        }
        
        .pb-item:nth-child(1),
        .pb-item:nth-child(2) {
            border-radius: 12px 12px 0 0;
        }
        
        .pb-item:nth-child(3),
        .pb-item:nth-child(4) {
            border-radius: 0 0 12px 12px;
        }
        
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .image-column {
            padding-left: 0;
            order: 2;
        }
        
        .form-column {
            order: 1;
            padding: 30px;
        }
        
        .form-row {
            flex-direction: column;
            gap: 15px;
        }
        
        .isv-cards, .isv-video-thumbnails {
            flex-direction: column;
            align-items: center;
        }
        
        .isv-card, .isv-video-thumb {
            max-width: 100%;
        }
        
        .stat-left {
            left: 10%;
        }
        
        .stat-right {
            right: 10%;
        }
    }
    
    @media (max-width: 768px) {
        .hero {
            text-align: center;
            padding: 0 5%;
        }
        
        .hero-content {
            margin: 60px auto 0;
        }
        
        .hero-title {
            font-size: 2.2rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .back-button {
            left: 50%;
            transform: translateX(-50%);
            bottom: 30px;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .section-description {
            font-size: 1.1rem;
        }
        
        .feature-title {
            font-size: 1.3rem;
        }
        
        .blog-header {
            flex-direction: column;
            align-items: stretch;
        }
        
        .search-container {
            width: 100%;
        }
        
        .search-bar {
            width: 100%;
        }
        
        .tags-container {
            justify-content: center;
        }
        
        .featured-title {
            font-size: 1.5rem;
        }
        
        .partnership-benefits-heading,
        .tyncad-whoweare-heading,
        .isv-title {
            font-size: 2rem;
        }
        
        .pb-grid {
            grid-template-columns: 1fr;
        }
        
        .pb-item {
            border-radius: 12px !important;
            margin-bottom: 0;
        }
        
        .isv-tablist {
            width: 100%;
        }
        
        .isv-tab {
            min-width: 120px;
            padding: 12px 20px;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
        }
        
        .form-container {
            padding: 25px;
        }
        
        .form-title {
            font-size: 1.8rem;
        }
        
        .stats-container {
            height: auto;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            padding: 40px 0;
        }
        
        .stat-bubble {
            position: relative !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            margin: 0;
        }
        
        .stat-left, .stat-center, .stat-right {
            width: 200px;
            height: 200px;
        }
        
        .stat-center {
            width: 220px;
            height: 220px;
        }
        
        .contact-content {
            flex-direction: column-reverse;
        }
        
        .contact-info {
            padding: 30px;
        }
        
        .contact-image {
            padding: 30px;
        }
        
        .contact-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .cta-button {
            padding: 12px 28px;
            font-size: 1rem;
        }
        
        .detail-content h2 {
            font-size: 1.8rem;
        }
        
        .service-detail {
            padding: 60px 4%;
        }
        
        .blog-grid {
            grid-template-columns: 1fr;
        }
        
        .featured-content {
            padding: 1.5rem;
        }
        
        .card-content {
            padding: 1.25rem;
        }
        
        .tyncad-whoweare-section {
            padding: 60px 4%;
        }
        
        .tyncad-whoweare-heading {
            font-size: 1.8rem;
        }
        
        .app-dev-section {
            padding: 40px 4% 60px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .section-description {
            font-size: 1rem;
        }
        
        .feature-column {
            padding: 30px 20px;
        }
        
        .partnership-benefits-heading,
        .isv-title {
            font-size: 1.8rem;
        }
        
        .isv-description {
            font-size: 1rem;
        }
        
        .isv-tab {
            min-width: 100px;
            padding: 10px 15px;
            font-size: 1rem;
        }
        
        .form-container {
            padding: 20px;
        }
        
        .form-title {
            font-size: 1.6rem;
        }
        
        .form-input, .form-select, .form-textarea {
            padding: 12px;
        }
        
        .stat-left, .stat-center, .stat-right {
            width: 180px;
            height: 180px;
        }
        
        .stat-center {
            width: 200px;
            height: 200px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .stat-center .stat-number {
            font-size: 2.5rem;
        }
        
        .contact-info {
            padding: 20px;
        }
        
        .contact-title {
            font-size: 1.8rem;
        }
        
        .contact-subtitle {
            font-size: 1rem;
        }
        
        .icon-wrapper {
            width: 45px;
            height: 45px;
        }
        
        .contact-text {
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 400px) {
        .hero-title {
            font-size: 1.6rem;
            color: #FFFFFF;
        }
        
        .hero-subtitle {
            font-size: 0.9rem;
        }
        
        .section-title {
            font-size: 1.6rem;
        }
        
        .isv-tablist {
            flex-direction: column;
            border-radius: 12px;
        }
        
        .isv-tab {
            border-radius: 8px;
            margin: 2px;
        }
        
        .isv-tab-slider {
            display: none;
        }
        
        .stat-left, .stat-center, .stat-right {
            width: 160px;
            height: 160px;
        }
        
        .stat-center {
            width: 180px;
            height: 180px;
        }
        
        .stat-number {
            font-size: 1.8rem;
        }
        
        .stat-center .stat-number {
            font-size: 2.2rem;
        }
    }
