

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    /* Modern color palette */
    --primary-color: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #4285f4;
    --secondary-color: #34a853;
    --accent-color: #ff5252;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-on-dark: rgba(255, 255, 255, 0.87);
    --text-on-light: rgba(0, 0, 0, 0.87);
    
    /* Gradients */
    --gradient-primary: linear-gradient(120deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(120deg, var(--secondary-color), #4ecdc4);
    --gradient-dark: linear-gradient(120deg, var(--dark-bg), var(--dark-surface));
    --gradient-hero: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(18,18,18,0.6) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

body {
    font-family: 'Prompt', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ktt-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.ktt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ktt-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
    z-index: -1;
}

.ktt-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.ktt-btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.ktt-btn-primary:hover::after {
    background: var(--primary-dark);
    transform: scaleX(1);
    transform-origin: left;
}

.ktt-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ktt-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.ktt-section-divider {
    width: 60px;
    height: 4px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    position: relative;
}

.ktt-section-divider::before,
.ktt-section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    top: -2px;
}

.ktt-section-divider::before {
    left: -12px;
}

.ktt-section-divider::after {
    right: -12px;
}

/* Header Styles */
.ktt-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.ktt-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.ktt-company-logo {
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
 }

.ktt-company-logo:hover {
    transform: scale(1.05);
}

.ktt-nav-list {
    display: flex;
    list-style: none;
}

.ktt-nav-item {
    margin-left: 32px;
    position: relative;
}

.ktt-nav-item a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    font-size: 16px;
}

.ktt-nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.ktt-nav-item:hover a::after,
.ktt-nav-item.ktt-active a::after {
    width: 100%;
}

.ktt-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    cursor: pointer;
}

.ktt-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* About Hero Section */
.ktt-about-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.ktt-about-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.8);
}

.ktt-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.ktt-about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    color: var(--text-on-dark);
    animation: fadeUp 1s ease-out;
}

.ktt-about-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ktt-about-hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Company Story Section */
.ktt-company-story {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
}

.ktt-company-story::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(circle, var(--primary-light) 0%, rgba(66, 133, 244, 0) 70%);
    opacity: 0.1;
    z-index: 0;
    border-radius: 50%;
    transform: translate(200px, -200px);
}

.ktt-story-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.ktt-story-text {
    z-index: 2;
}

.ktt-story-text h3 {
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
    color: var(--text-primary);
}

.ktt-story-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.ktt-story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.ktt-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-normal);
    z-index: 2;
}

.ktt-story-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: var(--shadow-xl);
}

/* Mission Vision Section */
.ktt-mission-vision {
    padding: 80px 0;
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.ktt-mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ktt-mission, .ktt-vision {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.ktt-mission:hover, .ktt-vision:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ktt-mission-img, .ktt-vision-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-normal);
}

.ktt-mission:hover .ktt-mission-img, 
.ktt-vision:hover .ktt-vision-img {
    transform: scale(1.05);
}

.ktt-mission-overlay, .ktt-vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.ktt-mission-content, .ktt-vision-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    color: var(--text-on-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.ktt-mission-content h2, .ktt-vision-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.ktt-mission-content p, .ktt-vision-content p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

/* Values and Philosophy Section */
.ktt-values-philosophy {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.ktt-values-philosophy::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, var(--secondary-color) 0%, rgba(52, 168, 83, 0) 70%);
    opacity: 0.1;
    z-index: 0;
    border-radius: 50%;
}

.ktt-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ktt-value-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ktt-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    z-index: -1;
}

.ktt-value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ktt-value-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.ktt-value-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.ktt-value-card:hover .ktt-value-card-icon {
    transform: scale(1.1);
}

.ktt-value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ktt-value-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Facilities Section */
.ktt-facilities {
    padding: 100px 0;
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.ktt-facilities::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, var(--primary-light) 0%, rgba(66, 133, 244, 0) 70%);
    opacity: 0.1;
    z-index: 0;
    border-radius: 50%;
    transform: translateY(-50%);
}

.ktt-facilities-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

.ktt-facilities-info {
    padding-right: 20px;
}

.ktt-facilities-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.ktt-facilities-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ktt-facilities-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-secondary);
}

.ktt-facilities-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.8;
}

.ktt-facilities-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ktt-gallery-row {
    display: flex;
    gap: 20px;
}

.ktt-gallery-img {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    transform: scale(1);
}

.ktt-gallery-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* Achievements Section */
.ktt-achievements {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.ktt-achievements::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, var(--accent-color) 0%, rgba(255, 82, 82, 0) 70%);
    opacity: 0.1;
    z-index: 0;
    border-radius: 50%;
}

.ktt-achievements-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ktt-achievement-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.ktt-achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ktt-achievement-img {
    height: 150px;
    width: auto;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.ktt-achievement-item:hover .ktt-achievement-img {
    transform: scale(1.05);
}

.ktt-achievement-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ktt-achievement-item p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* CTA Section */
.ktt-cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.ktt-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.ktt-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ktt-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.ktt-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ktt-cta-section .ktt-btn-primary {
    background: white;
    color: var(--primary-color);
}

.ktt-cta-section .ktt-btn-primary:hover {
    background: white;
    transform: translateY(-2px);
}

.ktt-cta-section .ktt-btn-primary::after {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer Styles */
.ktt-footer {
    background-color: var(--dark-bg);
    color: var(--text-on-dark);
    padding: 80px 0 20px;
}

.ktt-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.ktt-footer-info .ktt-company-logo {
    margin-bottom: 20px;
}

.ktt-footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 15px;
}

.ktt-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ktt-footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.ktt-footer-links ul {
    list-style: none;
}

.ktt-footer-links li {
    margin-bottom: 10px;
}

.ktt-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition-fast);
}

.ktt-footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.ktt-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ktt-about-hero-content h1 {
        font-size: 48px;
    }
    
    .ktt-section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .ktt-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ktt-about-hero-content h1 {
        font-size: 40px;
    }
    
    .ktt-about-hero-content p {
        font-size: 20px;
    }
    
    .ktt-mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ktt-facilities-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ktt-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ktt-header-container {
        height: 70px;
    }
    
    .ktt-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: white;
        overflow: hidden;
        transition: var(--transition-normal);
        opacity: 0;
        visibility: hidden;
        box-shadow: var(--shadow-md);
    }
    
    .ktt-nav.active {
        height: auto;
        opacity: 1;
        visibility: visible;
        padding: 20px 0;
    }
    
    .ktt-nav-list {
        flex-direction: column;
    }
    
    .ktt-nav-item {
        margin: 10px 24px;
    }
    
    .ktt-menu-toggle {
        display: flex;
    }
    
    .ktt-menu-toggle.active span:first-child {
        transform: translateY(9px) rotate(45deg);
    }
    
    .ktt-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .ktt-menu-toggle.active span:last-child {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .ktt-section-header h2 {
        font-size: 28px;
    }
    
    .ktt-about-hero-content h1 {
        font-size: 32px;
    }
    
    .ktt-about-hero-content p {
        font-size: 18px;
    }
    
    .ktt-company-story,
    .ktt-mission-vision,
    .ktt-values-philosophy,
    .ktt-facilities,
    .ktt-achievements {
        padding: 60px 0;
    }
    
    .ktt-section-header {
        margin-bottom: 40px;
    }
    
    .ktt-story-text h3 {
        font-size: 24px;
    }
    
    .ktt-gallery-row {
        flex-direction: column;
    }
    
    .ktt-footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .ktt-about-hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .ktt-about-hero-content h1 {
        font-size: 28px;
    }
    
    .ktt-about-hero-content p {
        font-size: 16px;
    }
    
    .ktt-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .ktt-section-header h2 {
        font-size: 24px;
    }
    
    .ktt-story-text h3 {
        font-size: 20px;
    }
    
    .ktt-cta-content h2,
    .ktt-mission-content h2, 
    .ktt-vision-content h2 {
        font-size: 24px;
    }
}