:root {
    --primary-color: #3a6ea5;
    --secondary-color: #c0d6df;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --light-text: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-color);
}

.highlight-text {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
    margin-bottom: 1rem;
}

.text-link {
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.text-link:hover {
    transform: translateX(5px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-title h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 150px 0 100px;
    color: white;
    position: relative;
}

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

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-buttons {
    margin: 2rem 0;
}

.hero-cta {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.stat-text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-text);
    opacity: 0.8;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.about-text, .about-image {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-checklist {
    margin: 1.5rem 0;
}

.feature-checklist li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.feature-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Digital Accounting Section */
.digital-accounting {
    background-color: white;
}

.digital-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.digital-text, .digital-image {
    flex: 1;
    min-width: 300px;
}

.digital-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

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

.services-list h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-right: 1rem;
    color: var(--primary-color);
    min-width: 24px;
}

/* Quotes Section */
.quotes {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
}

.quotes-slider {
    text-align: center;
}

.quote-slide {
    padding: 0 1rem;
}

.quote-slide blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    background-color: white;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background-color: white;
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    color: var(--primary-color);
}

.price {
    margin: 1rem 0;
}

.price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price .period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

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

.pricing-cta {
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--primary-color);
    min-width: 24px;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.form-submit {
    text-align: right;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-info {
    margin-bottom: 1.5rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-slogan {
    font-style: italic;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.copyright {
    margin-top: 1.5rem;
    opacity: 0.7;
    font-size: 0.9rem;
}
