:root {
    --primary-color: #E07A5F;
    --primary-light: #F2D5C8;
    --primary-dark: #C25E45;
    --secondary-color: #81B29A;
    --secondary-dark: #5F9283;
    --accent-color: #F2CC8F;
    --dark-blue: #3D405B;
    --light-blue: #F8F4E3;
    --text-color: #3D405B;
    --text-light: #696B7E;
    --text-lighter: #9A9BAD;
    --background: #F9F7F1;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(61, 64, 91, 0.12);
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --max-width: 1200px;
    --animation-speed: 0.5s;
    --card-bg: var(--white);
    --section-spacing: 100px;
    --hand-drawn-border: #E5E0D5;
    
    /* Font families */
    --body-font: 'Quicksand', sans-serif;
    --heading-font: 'Sen', sans-serif;
    --hand-font: 'Caveat', cursive;
}

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

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--animation-speed) ease;
    font-weight: 500;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-blue);
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

p {
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: var(--body-font);
}

input, textarea, select {
    font-family: var(--body-font);
    font-size: inherit;
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    border: 2px solid var(--primary-light);
    width: 100%;
    transition: all var(--animation-speed) ease;
    background-color: rgba(248, 244, 227, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.15);
    outline: none;
    background-color: var(--white);
}

input:hover, textarea:hover, select:hover {
    border-color: var(--primary-color);
}

select {
    -webkit-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%233D405B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat;
    background-position: right 14px center;
    background-color: rgba(248, 244, 227, 0.5);
    padding-right: 40px;
}

section {
    padding: var(--section-spacing) 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--animation-speed) ease;
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    font-family: var(--body-font);
    letter-spacing: 0.02em;
    text-align: center;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(224, 122, 95, 0.5);
    }
    100% {
        box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
    }
}

.btn-primary .fas {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .fas {
    transform: translateX(4px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(224, 122, 95, 0.35);
}

/* Limited time badge */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.85;
    animation: float 3s ease-in-out infinite;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--animation-speed) ease;
    border: 2px solid var(--primary-light);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23E07A5F" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
}

.btn-upload {
    background-color: var(--light-blue);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--animation-speed) ease;
    font-size: 0.9rem;
    margin: 12px 0;
    position: relative;
    z-index: 1;
    border: 1px solid var(--primary-light);
}

.btn-upload:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-full {
    margin-top: 15px;
    padding: 18px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-full i {
    font-size: 1.2rem;
}

/* Notification Bar */
.notification-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin: 0;
    font-weight: 800;
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
}

.logo h1 span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 32px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: all var(--animation-speed) ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 100px 0 70px;
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none"><path d="M20 50C30 45 40 45 50 50C60 55 70 55 80 50" stroke="%2381B29A" stroke-width="0.5" opacity="0.3"/><path d="M20 60C30 55 40 55 50 60C60 65 70 65 80 60" stroke="%2381B29A" stroke-width="0.5" opacity="0.3"/><path d="M20 70C30 65 40 65 50 70C60 75 70 75 80 70" stroke="%2381B29A" stroke-width="0.5" opacity="0.3"/></svg>');
    opacity: 0.3;
}

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cloud {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
}

.cloud-1 {
    top: 15%;
    left: 5%;
    width: 120px;
    height: 70px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 70" fill="%23ffffff"><path d="M0 40 Q20 20 40 30 Q50 5 70 20 Q90 10 120 30 Q110 60 80 55 Q70 70 40 60 Q20 65 0 40z"/></svg>');
    animation-delay: 0s;
}

.cloud-2 {
    top: 25%;
    right: 10%;
    width: 160px;
    height: 90px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 90" fill="%23ffffff"><path d="M0 50 Q30 20 60 40 Q80 10 100 30 Q130 20 160 40 Q150 70 110 65 Q90 85 60 75 Q30 85 0 50z"/></svg>');
    animation-delay: 1.5s;
}

.cloud-3 {
    top: 40%;
    left: 20%;
    width: 100px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60" fill="%23ffffff"><path d="M0 30 Q15 15 30 25 Q40 5 55 15 Q70 5 100 25 Q90 45 65 40 Q55 55 30 45 Q15 50 0 30z"/></svg>');
    animation-delay: 3s;
}

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

.hero h1 {
    margin-bottom: 16px;
    font-size: 3.5rem;
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--primary-light);
    z-index: -1;
    opacity: 0.7;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 24px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-item {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--animation-speed) ease;
    background-color: var(--white);
    padding: 0;
    margin: 0;
    display: flex;
}

.gallery-item:nth-child(odd) {
    transform: translateY(-10px);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(0);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
    margin: 0;
    padding: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    color: var(--dark-blue);
    box-shadow: var(--shadow);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Transform Section */
.transform {
    background-color: var(--white);
    position: relative;
}

.transform-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .transform-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

.transform-info {
    flex: 1;
}

.transform-info h2 {
    color: var(--primary-dark);
}

.transform-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.transform-card {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 500px;
    border: 1px solid var(--hand-drawn-border);
    position: relative;
}

.upload-area {
    border: 2px dashed var(--primary-light);
    border-radius: var(--border-radius-sm);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--animation-speed) ease;
    background-color: rgba(248, 244, 227, 0.3);
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background-color: rgba(248, 244, 227, 0.5);
    transform: translateY(-2px);
}

.upload-area i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.upload-area p {
    margin-bottom: 10px;
    text-align: center;
}

.file-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

.form-title {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.required {
    color: var(--primary-color);
    margin-left: 4px;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
    margin-left: 2px;
}

.form-security {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid var(--hand-drawn-border);
}

.security-badge i {
    color: var(--secondary-color);
}

.form-success {
    background-color: rgba(129, 178, 154, 0.15);
    border: 1px solid var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    margin: 20px 0;
}

.form-success i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form-success h4 {
    color: var(--secondary-dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-color);
    text-align: center;
}

.terms {
    margin-top: 20px;
    text-align: center;
}

.terms p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
    text-align: center;
}

.terms a {
    text-decoration: underline;
    color: var(--text-light);
}

.terms a:hover {
    color: var(--primary-color);
}

/* Examples Section */
.examples {
    background-color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.examples::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="20" cy="20" r="2" fill="%23F2CC8F" opacity="0.2"/><circle cx="60" cy="40" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="100" cy="20" r="1.5" fill="%23F2CC8F" opacity="0.2"/><circle cx="140" cy="40" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="180" cy="20" r="2" fill="%23F2CC8F" opacity="0.2"/><circle cx="20" cy="80" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="60" cy="100" r="2" fill="%23F2CC8F" opacity="0.2"/><circle cx="100" cy="80" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="140" cy="100" r="1.5" fill="%23F2CC8F" opacity="0.2"/><circle cx="180" cy="80" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="20" cy="140" r="1.5" fill="%23F2CC8F" opacity="0.2"/><circle cx="60" cy="160" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="100" cy="140" r="2" fill="%23F2CC8F" opacity="0.2"/><circle cx="140" cy="160" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="180" cy="140" r="1.5" fill="%23F2CC8F" opacity="0.2"/><circle cx="20" cy="200" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="60" cy="180" r="1.5" fill="%23F2CC8F" opacity="0.2"/><circle cx="100" cy="200" r="1" fill="%23F2CC8F" opacity="0.2"/><circle cx="140" cy="180" r="2" fill="%23F2CC8F" opacity="0.2"/><circle cx="180" cy="200" r="1" fill="%23F2CC8F" opacity="0.2"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.examples h2 {
    margin-bottom: 16px;
}

.examples > p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    border-radius: 50px;
    background-color: var(--background);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.tab:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.tab.active {
    background-color: var(--primary-color);
    color: white;
}

.tab.hand-drawn {
    font-family: var(--hand-font);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

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

.example-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--card-bg);
    transition: all var(--animation-speed) ease;
    display: flex;
    flex-direction: column;
}

.example-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(72, 94, 112, 0.15);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    flex: 1;
}

.before, .after {
    position: relative;
    height: 100%;
}

.before img, .after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none;
    padding: 0;
    margin: 0;
}

.label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 30px;
    font-weight: 500;
    z-index: 1;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242, 213, 200, 0.3);
}

.magic-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><path d="M80 80 L85 75 L80 70 L75 75 Z" fill="%23ffffff" opacity="0.4"/><path d="M200 50 L205 45 L200 40 L195 45 Z" fill="%23ffffff" opacity="0.3"/><path d="M330 100 L335 95 L330 90 L325 95 Z" fill="%23ffffff" opacity="0.4"/><path d="M80 200 L85 195 L80 190 L75 195 Z" fill="%23ffffff" opacity="0.3"/><path d="M200 200 L205 195 L200 190 L195 195 Z" fill="%23ffffff" opacity="0.5"/><path d="M320 200 L325 195 L320 190 L315 195 Z" fill="%23ffffff" opacity="0.3"/><path d="M120 300 L125 295 L120 290 L115 295 Z" fill="%23ffffff" opacity="0.4"/><path d="M250 300 L255 295 L250 290 L245 295 Z" fill="%23ffffff" opacity="0.3"/></svg>');
    z-index: 0;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.cta-banner h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

/* Features Section */
.features {
    background-color: var(--background);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" fill="%23A3CFAE" opacity="0.1"><path d="M150 0 C200 50 250 50 300 0 L300 300 C250 250 200 250 150 300 C100 250 50 250 0 300 L0 0 C50 50 100 50 150 0 Z"/></svg>');
    opacity: 0.1;
    z-index: 0;
    transform: rotate(10deg);
}

.features::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" fill="%23E6A67C" opacity="0.1"><path d="M150 0 C200 50 250 50 300 0 L300 300 C250 250 200 250 150 300 C100 250 50 250 0 300 L0 0 C50 50 100 50 150 0 Z"/></svg>');
    opacity: 0.1;
    z-index: 0;
    transform: rotate(-10deg);
}

.features h2 {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.features > p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 40px 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all var(--animation-speed) ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242, 204, 143, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(72, 94, 112, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(242, 213, 200, 0.3);
}

.feature-card:nth-child(1) .feature-icon i {
    color: var(--primary-color);
}

.feature-card:nth-child(2) .feature-icon {
    background-color: rgba(129, 178, 154, 0.15);
}

.feature-card:nth-child(2) .feature-icon i {
    color: var(--secondary-color);
}

.feature-card:nth-child(3) .feature-icon {
    background-color: rgba(242, 204, 143, 0.15);
}

.feature-card:nth-child(3) .feature-icon i {
    color: var(--accent-color);
}

.feature-card:nth-child(4) .feature-icon {
    background-color: rgba(61, 64, 91, 0.15);
}

.feature-card:nth-child(4) .feature-icon i {
    color: var(--dark-blue);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><line x1="0" y1="0" x2="100" y2="100" stroke="%23A3CFAE" stroke-width="0.5" opacity="0.1"/><line x1="100" y1="0" x2="0" y2="100" stroke="%23A3CFAE" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.faq h2 {
    margin-bottom: 16px;
}

.faq > p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    margin-bottom: 16px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(61, 64, 91, 0.05);
    border: 1px solid var(--hand-drawn-border);
    transition: all var(--animation-speed) ease;
    background-color: rgba(248, 244, 227, 0.3);
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(72, 94, 112, 0.1);
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background-color: var(--background);
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    position: relative;
}

.accordion-button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="1" viewBox="0 0 6 1"><line x1="0" y1="0.5" x2="6" y2="0.5" stroke="%23E0D7CA" stroke-width="1" stroke-dasharray="2 1"/></svg>');
    opacity: 0.5;
}

.accordion-button:hover {
    background-color: var(--primary-light);
}

.accordion-button .icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all var(--animation-speed) ease;
}

.accordion-content {
    display: none;
    padding: 24px;
    background-color: var(--white);
    border-top: 1px solid var(--hand-drawn-border);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-button .icon {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M0 0 Q 100 50 200 0 L 200 200 L 0 200 Z" fill="%23C25E45" opacity="0.1"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--animation-speed) ease;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    opacity: 0;
    transition: all var(--animation-speed) ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.link-column ul li {
    margin-bottom: 14px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--animation-speed) ease;
    position: relative;
}

.link-column ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: all var(--animation-speed) ease;
}

.link-column ul li a:hover {
    color: var(--primary-color);
}

.link-column ul li a:hover::before {
    width: 100%;
}

.copyright {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    margin-top: 6px;
    font-size: 0.8rem;
}

/* Upload Preview Styles */
.upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 120px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(44, 62, 80, 0.1);
}

.thumbnail {
    width: 100%;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.file-info {
    padding: 5px 8px;
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

/* Message Styles */
.message-container {
    margin-bottom: 24px;
}

.message {
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success {
    background-color: rgba(129, 178, 154, 0.15);
    color: #4C7A65;
    border-left: 4px solid #4C7A65;
}

.error {
    background-color: rgba(224, 122, 95, 0.15);
    color: var(--primary-dark);
    border-left: 4px solid var(--primary-dark);
}

.close-message {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

.close-message:hover {
    opacity: 1;
}

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    :root {
        --section-spacing: 80px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .feature-grid, .example-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
        --container-padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        width: 100%;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-security {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-image img {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .feature-box {
        padding: 20px;
    }
}

/* Animations and Effects */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.ghibli-float {
    animation: float 6s ease-in-out infinite;
}

.ghibli-breathe {
    animation: breathe 4s ease-in-out infinite;
    transform-origin: center;
}

/* Hand-drawn style */
.hand-drawn {
    position: relative;
    z-index: 1;
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border: 2px solid var(--hand-drawn-border);
    border-radius: calc(var(--border-radius) + 2px);
    z-index: -1;
    opacity: 0.7;
}

/* Ghibli Filter */
.ghibli-filter {
    filter: url('#ghibli-paper-texture');
}

/* Lazy Loading Support */
.lazy-load {
    opacity: 0;
    transition: opacity var(--animation-speed) ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Print Styles */
@media print {
    .notification-bar, .hero-buttons, 
    .cta-banner, footer {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
    }
    
    .transform-card, .example-item, .feature-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Testimonials section styles */
.testimonials {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1.5" fill="%23F2CC8F" opacity="0.15"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ratings-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.star-rating {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.star-rating.small {
    font-size: 16px;
    margin-bottom: 0;
}

.rating-text {
    color: var(--text-light);
    font-weight: 600;
}

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

.testimonial-card {
    background-color: var(--background);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--hand-drawn-border);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-light);
}

.user-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--primary-light);
    font-size: 24px;
    opacity: 0.6;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

.cta-testimonial {
    text-align: center;
    margin-top: 40px;
}

/* Responsive design optimization */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.version-info {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.version-info span {
    font-weight: 600;
    color: #333;
} 