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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
    padding-top: 92px;
    margin-top: 0;
}

main {
    position: relative;
    z-index: 1;
    padding-top: 0;
}


/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');


/* Focus styles */
*:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
}

.cta-button:focus {
    outline: 3px solid #d4a574;
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-title::after {
        background: #000;
    }
    
    .approach-item h3::after {
        background: #000;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

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

/* used in about page */
.extra-bold {
      font-weight: 900; /* Or 800 for slightly less bold */
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}


.hero-content {
    max-width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-definition {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    line-height: 1.5;
    font-style: italic;
}

.hero-text-container {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    width: 98%;
    max-width: 2000px;
}

.hero-definition-card {
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 450px;
    margin-left: 2rem;
    margin-right: auto;
    align-self: flex-start;
}

.hero-definition-card .word-header {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-definition-card .definition-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-definition-card .word-type {
    font-size: 1.3rem;
    color: #d4a574;
    font-weight: 300;
    font-style: italic;
}

.hero-definition-card .pronunciation {
    font-size: 1.4rem;
    color: white;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-definition-card .definition-text {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 2rem;
    align-self: flex-end;
}

.cta-button {
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #d4a574;
    color: white;
}

.cta-button.primary:hover {
    background: #c19660;
}

.cta-button.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.cta-button.secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cta-button.secondary:hover {
    background: #2c3e50;
    color: white;
}

.cta-button.tertiary {
    background: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
}

.cta-button.tertiary:hover {
    background: #d4a574;
    color: white;
}

.cta-section .cta-button {
    background: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.cta-section .cta-button.small {
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem;
}

.cta-section .cta-button:hover {
    background: #d4a574;
    color: white;
}

/* Definition Card */
section.definition-card {
    background: linear-gradient(135deg, #fff9f3 0%, #fef7f0 50%, #fff9f3 100%) !important;
    padding: 2rem 2rem !important;
    border: 3px solid #d4a574 !important;
    border-radius: 20px;
    margin: 2rem auto !important;
    max-width: 1200px;
    position: relative;
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.25) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999 !important;
    min-height: 200px !important;
}

.definition-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.word-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.definition-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.02em;
}

.word-type {
    font-size: 1.2rem;
    color: #d4a574;
    font-weight: 500;
    font-style: italic;
}

.pronunciation {
    font-size: 1.3rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.definition-text {
    font-size: 1.5rem;
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 2rem 0;
    position: relative;
}

section:first-of-type {
    padding-top: 0;
}

section:nth-child(even) {
    background: #fafbfc;
}

section:nth-child(odd) {
    background: #f8f9fa;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0;
}

.section-title::after {
    display: none;
}


/* What We Do Section - Friending Spaces Style */
.what-we-do {
    background: #f8f9fa;
    padding: 2rem 2rem;
    position: relative;
}

.what-we-do-intro-large {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: left;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 100;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.what-we-do-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    text-align: left;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    padding-bottom: 1rem;
}

.service-item:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.service-header:hover {
    color: #d4a574;
}

.service-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    flex-shrink: 0;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    position: relative;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-header:hover h3 {
    color: #d4a574;
}

.dropdown-arrow {
    font-size: 0.8rem;
    font-weight: 200;
    color: #8a9ba8;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    opacity: 0.7;
}

.dropdown-item.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #8a9ba8;
    opacity: 1;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.dropdown-item.active .service-content {
    max-height: 200px;
    padding: 0 0 1rem 0;
}

.service-content p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Why Kismet Hero Section */
.why-kismet-hero {
    background-color: #f8f9fa;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('yellow-flowers-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 1rem 0;
    margin: 0.5rem 0;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #e9ecef;
}

.why-kismet-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-kismet-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Professional Services Hero Section */
.professional-services-hero {
    background-color: #f8f9fa;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('couple-ocean-sunset-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    padding: 1rem 0;
    margin: 0.5rem 0;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #e9ecef;
}

.professional-services-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.professional-services-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.02em;
    padding: 0 2rem;
}

/* Comparison Section */
.comparison-section {
    background: #f8f9fa;
    padding: 2rem 0;
    position: relative;
}

/* Why Kismet */
.why-kismet {
    background: #f8f9fa;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.comparison-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dating-apps {
    border-left: 4px solid #e74c3c;
}

.kismet-difference {
    border-left: 4px solid #d4a574;
}

.comparison-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.dating-apps li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.kismet-difference li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.value-proposition {
    font-size: 2rem;
    font-weight: 300;
    color: #2c3e50;
    font-style: italic;
    border: none;
    margin: 3rem 0;
    position: relative;
}

.value-proposition::before,
.value-proposition::after {
    content: '"';
    font-size: 3rem;
    color: #bdc3c7;
    position: absolute;
}

.value-proposition::before {
    left: -2rem;
    top: -1rem;
}

.value-proposition::after {
    right: -2rem;
    bottom: -2rem;
}

.quote-attribution {
    display: block;
    font-size: 1.1rem;
    color: #d4a574;
    font-style: normal;
    font-weight: 500;
    margin-top: 1rem;
    text-align: right;
    font-family: 'Inter', sans-serif;
}

/* Approach Section */
.approach-section {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.approach-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.approach-text p strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.services-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.services-text {
    min-height: 500px;
}

.services-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 300;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item-new {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.service-item-new:last-child {
    border-bottom: none;
}

.service-item-new .service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.service-item-new strong {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 300;
    margin: 0;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.service-item-new .service-header:hover strong,
.service-item-new.active strong {
    color: #d4a574;
}

.service-item-new .dropdown-arrow {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.service-item-new .service-header:hover .dropdown-arrow,
.service-item-new.active .dropdown-arrow {
    color: #d4a574;
}

.service-item-new.active .dropdown-arrow {
    transform: rotate(45deg);
}

.service-item-new .service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.service-item-new.active .service-content {
    max-height: 200px;
}

.service-item-new .service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
    font-weight: 300;
    padding: 0 0 2rem 0;
}

.services-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Application Section */
.application-section {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.application-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.application-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.application-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.application-text p strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Page Hero Section */
.page-hero {
    background: #f8f9fa;
    padding: 4rem 0 0;
    text-align: center;
    margin-top: 0;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Active navigation link */
.nav-menu a.active {
    color: #d4a574;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-highlights {
    margin: 2rem 0;
}

.service-highlights h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.service-category {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
}

.service-category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4a574;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.service-category h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d4a574;
    border-radius: 1px;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.privacy-security,
.process-details {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-security::before,
.process-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.privacy-security h3,
.process-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.privacy-security h3::after,
.process-details h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #2c3e50;
    border-radius: 1px;
}

.privacy-security p,
.process-details p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Our Story */
.our-story {
    background: #f8f9fa;
    padding: 2rem 0 3rem 0;
}

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

.story-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.name-story {
    background: rgba(212, 165, 116, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.name-story h3 {
    color: #d4a574;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.founder-story {
    margin-top: 3rem;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    flex: 0 0 300px;
}

.mala-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.founder-text {
    flex: 1;
}

.founder-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: left;
}

.founder-text p {
    text-align: left;
    margin-bottom: 1.5rem;
}

.founder-story h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2c3e50;
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('montse-monmo-TRMLSoaqXh8-unsplash.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 3rem 0;
    margin: 0;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 200;
    color: white;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.1em;
    text-shadow: none;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Blog Previews */
.blog-previews {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
}

.blog-previews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="%23d4a574" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.blog-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.blog-image {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}


.blog-image.heart-hands {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.blog-image.couple-coffee {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.blog-image.couple-walking {
    background: linear-gradient(135deg, #c3cfe2 0%, #c3cfe2 50%, #f093fb 100%);
}

.blog-content {
    padding: 2.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #8a9ba8;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-preview h3 {
    margin-bottom: 1rem;
}

.blog-preview h3 a {
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-preview h3 a:hover {
    color: #d4a574;
}

.blog-preview p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
}

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

.footer-left {
    display: flex;
    align-items: center;
}

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

.footer-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.privacy-button {
    background: transparent;
    color: #bdc3c7;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.privacy-button:link,
.privacy-button:visited,
.privacy-button:hover,
.privacy-button:active {
    text-decoration: none !important;
}

.privacy-button:hover {
    color: #d4a574;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: #d4a574;
}

.social-link svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Privacy Policy Page */
.privacy-policy-page {
    background: #f8f9fa;
    padding: 4rem 0;
    min-height: 70vh;
}

.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.privacy-policy-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.privacy-policy-divider {
    width: 100%;
    height: 2px;
    background: #d4a574;
    margin: 0 0 3rem 0;
}

.privacy-last-updated {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 3rem;
    font-weight: 300;
}

.privacy-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 300;
}

.privacy-policy-list {
    margin: 3rem 0;
}

.privacy-item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    font-weight: 300;
}

.privacy-contact {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-top: 3rem;
    font-weight: 300;
}

/* Contact Page */
.contact-page {
    background: #f8f9fa;
    padding: 4rem 0;
    min-height: 70vh;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-divider {
    width: 100%;
    height: 2px;
    background: #d4a574;
    margin: 0 0 2rem 0;
}

.contact-intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    font-weight: 300;
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

.contact-cta .cta-button {
    background: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.contact-cta .cta-button:hover {
    background: #d4a574;
    color: white;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d4a574;
}

.footer-copyright {
    background: #1a252f;
    padding: 1rem 0;
    text-align: center;
}

.footer-copyright p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */
/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 1rem;
        min-height: 60vh;
    }
    
    .definition-card {
        margin-top: 2rem;
    }
    
    .founder-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-image {
        flex: none;
    }
    
    .mala-photo {
        width: 250px;
        height: 300px;
        margin: 0 auto;
    }
    
    .founder-text h3,
    .founder-text p {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .dating-reality p {
        font-size: 1.1rem;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .dating-reality p::before,
    .dating-reality p::after {
        font-size: 3rem;
    }
    
    .dating-reality p::before {
        top: -0.3rem;
        left: 1rem;
    }
    
    .dating-reality p::after {
        bottom: -2rem;
        right: 1rem;
    }
    
    .approach-grid,
    .service-categories,
    .comparison-grid,
    .comparison-grid-new,
    .services-grid-new,
    .services-grid,
    .approach-content,
    .services-content,
    .application-content,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .approach-content,
    .services-content,
    .application-content {
        gap: 3rem;
    }
    
    .approach-text h2,
    .services-text h2,
    .application-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .approach-image img,
    .services-image img,
    .application-image img {
        height: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-buttons .cta-button {
        width: 250px;
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .value-proposition::before,
    .value-proposition::after {
        display: none;
    }
    
    .quote-attribution {
        text-align: center;
        font-size: 1rem;
    }
    
    .definition-card {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .definition-title {
        font-size: 2.5rem;
    }
    
    .why-kismet-title,
    .professional-services-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .word-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pronunciation {
        font-size: 1.1rem;
    }
    
    .definition-text {
        font-size: 1.2rem;
    }
    
    .comparison-card,
    .service-category,
    .privacy-security,
    .process-details {
        padding: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .blog-meta {
        justify-content: center;
    }
    
    .approach-image {
        height: 220px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    section {
        padding: 3rem 0;
    }

    .matchmaking-approach,
    .detailed-services,
    .blog-previews,
    .cta-section {
        padding: 3rem 0;
    }

    /* Mobile stacking for Why Matchmaking Matters & Dating Today */
    .matchmaking-dating-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    /* Mobile stacking for Real Connection section - image on top */
    .real-connection-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 0 1rem;
        min-height: 50vh;
    }
    
    .definition-card {
        margin-top: 1.5rem;
    }
    
    .mala-photo {
        width: 200px;
        height: 250px;
    }
    
    .founder-content {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-journey {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
    
    .why-kismet-title,
    .professional-services-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 200px;
    }
    
    .hero-buttons .cta-button {
        width: 220px;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .matchmaking-approach,
    .detailed-services,
    .blog-previews,
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .approach-grid,
    .blog-grid {
        gap: 2rem;
    }
}

    
    .approach-section,
    .services-section,
    .application-section {
        padding: 2rem 0;
    }
    
    .approach-text h2,
    .services-text h2,
    .application-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .approach-text p,
    .services-text > p,
    .application-text p {
        font-size: 1.1rem;
    }
    
    .approach-image img,
    .services-image img,
    .application-image img {
        height: 250px;
    }
    
    .approach-image {
        height: 200px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .definition-card {
        padding: 1.5rem;
    }
    
    .definition-title {
        font-size: 2rem;
    }
    
    .pronunciation {
        font-size: 1rem;
    }
    
    .definition-text {
        font-size: 1.1rem;
    }
    
    .phonetic {
        font-size: 1rem;
    }
    
    .definition {
        font-size: 1rem;
    }
    
    .service-category,
    .privacy-security,
    .process-details {
        padding: 2rem;
    }
    
    .blog-content {
        padding: 2rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo::before {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 3rem;
    border: 1px solid #d4a574;
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

/* Form Styles */
.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    text-align: center;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #8a9ba8;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.inline-text {
    width: 200px !important;
    margin-left: 0.5rem;
    padding: 0.3rem 0.5rem !important;
}

.form-group a {
    color: #d4a574;
    text-decoration: underline;
}

.form-group a:hover {
    color: #c19660;
}

#signupForm .cta-button {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

/* Mobile Form Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        padding: 2rem;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .inline-text {
        width: 150px !important;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
    
    .inline-text {
        width: 120px !important;
    }
}

/* Comparison Section Styles */
.grayed-out {
    opacity: 0.4;
    color: #999 !important;
}

.grayed-out li, .grayed-out span {
    color: #999 !important;
}

.active-side {
    background: #d4a574 !important;
    color: white !important;
    border: none !important;
}

.inactive-side {
    background: transparent !important;
    color: #999 !important;
    border: 2px solid #ccc !important;
}
