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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ec4899;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Date Tracking Section */
.date-tracking {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.tracking-demo {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.demo-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.demo-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.demo-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.demo-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.demo-feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Active Dates Section */
.active-dates {
    padding: 100px 20px;
    background: white;
}

.date-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.date-link-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(236, 72, 153, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.date-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
    border-color: #ec4899;
}

.date-link-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.date-link-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
}

.date-link-status {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.date-link-info {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.date-link-url {
    color: #667eea;
    font-size: 0.85rem;
    word-break: break-all;
    font-family: monospace;
}

.add-link-section {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.add-link-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.add-link-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.link-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.link-input:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.step p {
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ec4899;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section.alt-bg {
    background: #f9fafb;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1f2937;
}

.content-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(102, 126, 234, 0.3);
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Difference List */
.difference-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.difference-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.difference-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.difference-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.difference-content p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Commitment Content */
.commitment-content {
    max-width: 800px;
    margin: 40px auto 0;
}

.large-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1f2937;
}

.cta-box p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Feature Detail Pages */
.feature-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-detail-icon {
    font-size: 5rem;
    text-align: center;
}

.feature-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-intro {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-points {
    display: grid;
    gap: 25px;
}

.point h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.point p {
    color: #6b7280;
    line-height: 1.7;
}

/* Safety Features */
.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.safety-feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.safety-feature-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.safety-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.safety-feature-card > p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #6b7280;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Privacy Section */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.privacy-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.privacy-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.privacy-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Tips Section */
.tips-section {
    max-width: 900px;
    margin: 60px auto 0;
}

.tip-category {
    margin-bottom: 50px;
}

.tip-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    line-height: 1.7;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.tips-list strong {
    color: #1f2937;
}

/* Guidelines */
.guidelines-content {
    max-width: 900px;
    margin: 0 auto;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guideline-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.guideline-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.guideline-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Support Box */
.support-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-box h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1f2937;
}

.support-box p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Journey Steps */
.journey-steps {
    max-width: 1000px;
    margin: 60px auto 0;
}

.journey-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

.journey-step.reverse {
    direction: rtl;
}

.journey-step.reverse > * {
    direction: ltr;
}

.step-visual {
    text-align: center;
    position: sticky;
    top: 100px;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-icon-large {
    font-size: 4rem;
}

.step-content-detailed h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1f2937;
}

.step-intro {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.step-details {
    display: grid;
    gap: 25px;
    margin-bottom: 25px;
}

.detail-item {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.detail-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.detail-item p {
    color: #6b7280;
    line-height: 1.7;
}

.step-tip {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 20px;
    border-radius: 12px;
    color: #4b5563;
    line-height: 1.7;
}

.step-tip strong {
    color: #1f2937;
}

/* Quick Overview */
.quick-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.overview-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.overview-list {
    list-style: none;
    padding-left: 0;
}

.overview-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #6b7280;
    line-height: 1.6;
}

.overview-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item-detailed {
    background: white;
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item-detailed:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item-detailed h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.faq-item-detailed p {
    color: #6b7280;
    line-height: 1.7;
}

.faq-item-detailed a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.faq-item-detailed a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.contact-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 40px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* Response Info */
.response-info {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.response-info h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #1f2937;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.response-item {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.response-time {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.response-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Social Section */
.social-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
}

.social-link:hover {
    background: #f9fafb;
    transform: translateY(-3px);
}

.social-icon {
    font-size: 2.5rem;
}

.social-link span:last-child {
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.legal-intro p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #1f2937;
}

.legal-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
    color: #4b5563;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.contact-list li {
    margin-bottom: 12px;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-footer {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}

.legal-footer p {
    color: #1f2937;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-footer p:last-child {
    margin-bottom: 0;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .tracking-demo {
        padding: 30px 20px;
    }

    .demo-content {
        grid-template-columns: 1fr;
    }

    .add-link-form {
        flex-direction: column;
    }

    .link-input {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

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

    .journey-step {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-visual {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .difference-item {
        flex-direction: column;
        gap: 15px;
    }

    .feature-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .support-box {
        padding: 40px 25px;
    }
}
