* {
    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;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo .d {
    color: #ff4757;
}

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

.nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #ff4757;
}

/* Hero Section */
.hero {
    padding: 120px 0 300px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    color: #ff4757;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 175px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #ff4757;
    color: white;
    border-color: #ff4757;
}

.btn-primary:hover {
    background: #ff3742;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-secondary:hover {
    border-color: #ff4757;
    color: #ff4757;
}

/* Visual Elements */
.visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.chart-element {
    position: absolute;
}

/* Real Image Styles */
.main-dashboard {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.dashboard-image {
    width: 700px;
    height: auto;
    max-width: 95vw;
    opacity: 1;
}

.curve-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 0;
    width: 100vw;
    text-align: center;
    pointer-events: none;
}

.curve-image {
    width: 100vw;
    height: auto;
    opacity: 0.15;
    min-width: 100vw;
}

/* Section Styles */
.section-tagline {
    color: #ff4757;
    font-size: 16px;
    font-weight: 500;
    text-transform: lowercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon.blue { background: #3742fa; color: white; }
.service-icon.purple { background: #8c7ae6; color: white; }
.service-icon.yellow { background: #ffa502; color: white; }
.service-icon.red { background: #ff4757; color: white; }
.service-icon.orange { background: #ff6348; color: white; }
.service-icon.cyan { background: #00d2d3; color: white; }

.service-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1L7.5 4.5H11L8.25 6.75L9.75 10.25L6 8L2.25 10.25L3.75 6.75L1 4.5H4.5L6 1Z' fill='%23ff4757'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text {
    text-align: left;
}

.about-image {
    position: relative;
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.team-members {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.member {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.3);
}

.chart-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.process-step {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-icon.yellow { background: #ffa502; }
.step-icon.red { background: #ff4757; }
.step-icon.blue { background: #3742fa; }

.step-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0 80px;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-title {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.contact-details h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-item {
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-icon.email {
    background: #ff4757;
    color: white;
}

.contact-icon.phone {
    background: #ffa502;
    color: white;
}

/* Decorative curve */
.contact-curve {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 200px;
    opacity: 0.1;
    pointer-events: none;
}

.contact-curve svg {
    width: 100%;
    height: 100%;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background: white;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #ff4757;
}

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

/* Services Selection */
.services-selection {
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #ff4757;
    background: #fff5f5;
}

.service-option input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #ff4757;
}

.service-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
    color: white;
}

.service-icon-small.blue { background: #3742fa; }
.service-icon-small.purple { background: #8c7ae6; }
.service-icon-small.yellow { background: #ffa502; }
.service-icon-small.red { background: #ff4757; }
.service-icon-small.orange { background: #ff6348; }
.service-icon-small.cyan { background: #00d2d3; }

.service-text {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

/* Submit Button */
.submit-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #ff3742;
    transform: translateY(-2px);
}

/* Privacy Section */
.privacy {
    padding: 120px 0 80px;
    background: #fff;
}

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

.privacy-title {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.privacy-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Privacy Content */
.privacy-content {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 95vw;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff4757;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.privacy-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-section a {
    color: #ff4757;
    text-decoration: none;
    font-weight: 500;
}

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

.privacy-section em {
    font-style: italic;
    font-weight: 500;
}

/* Terms & Conditions Section */
.terms {
    padding: 120px 0 80px;
    background: #fff;
}

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

.terms-title {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.terms-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Terms Content */
.terms-content {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 95vw;
}

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff4757;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.terms-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-section li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.terms-section a {
    color: #ff4757;
    text-decoration: none;
    font-weight: 500;
}

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

.terms-section em {
    font-style: italic;
    font-weight: 500;
}

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

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

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-logo .d {
    color: #ff4757;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: #bdc3c7;
    margin-top: 5px;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    font-size: 12px;
    color: #95a5a6;
    margin: 5px 0;
    line-height: 1.4;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff4757;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: #fff;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.about-text-content {
    max-width: 600px;
}

.about-paragraph {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-visual {
    position: relative;
}

.team-showcase {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    margin: 0 auto 15px;
    position: relative;
}

.member-avatar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.team-member h4 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

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

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

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .chart-element {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-title {
        font-size: 36px;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 36px;
    }

    .privacy-section {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    /* About Page Mobile Styles */
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-description {
        font-size: 18px;
    }

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

    .about-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-cta .btn {
        width: 200px;
    }

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

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