:root {
    /* Colors */
    --primary-color: #FE7A38;
    /* Updated Orange */
    --primary-hover: #E56220;
    --secondary-color: #F1F0E4;
    /* Updated Background (Beige/Gray) */
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --accent-color: #FFCC00;
    /* Yellow */

    /* Fonts */
    --font-main: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Container */
    --container-width: 1000px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.5;
    /* Increased line height for better readability */
    background-color: var(--white);
    letter-spacing: 0.08em;
    /* Increased letter spacing */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 0;
    /* Hidden by default */
    animation-fill-mode: forwards;
    /* Keep state after animation */
}

.fade-in-up.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-in-left.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-in-right.visible {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Slide in left with delay for hero title */
.slide-in-left-delay {
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-in-left-delay.visible {
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

/* Stagger delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

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

.btn-large {
    font-size: 1.2rem;
    padding: 16px 40px;
    box-shadow: 0 4px 6px rgba(254, 122, 56, 0.3);
}

/* Header */
.header {
    background-color: var(--white);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    max-width: 120px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    vertical-align: bottom;
}

.nav ul {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav a {
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Hero Section */
.hero {
    background-color: var(--primary-color);
    /* Orange Background */
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    color: var(--white);
    /* Main text White */
    position: relative;
}

/* Hero Decorative elements */
.hero-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hero-decoration-left {
    top: -100px;
    left: -100px;
}

.hero-decoration-right {
    bottom: -100px;
    right: -100px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.hero-content {
    flex: 1;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #fdff00;
    /* Yellow */
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    /* Slight shadow for legibility */
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    /* White */
}

.hero-title span {
    display: block;
}


.hero-title .highlight {
    color: #FE7A38;
    /* Orange text */
    background: #fdff00;
    /* Yellow background */
    text-decoration: none;
    /* Remove wavy underline */
    padding: 0.4em 0.7em;
    /* Increased padding for larger badge */
    border-radius: 10px;
    /* Slightly larger rounded corners */
    display: inline-block;
    /* Prevent overlap issues */
    line-height: 1.3;
    /* Increased line height for better spacing */
    margin: 0.2em 0.15em;
    /* More margin, especially vertical */
    vertical-align: middle;
    /* Align with text */
    font-size: 1.05em;
    /* Slightly larger text */
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    /* White */
    margin-bottom: var(--spacing-lg);
}

.hero-features {
    display: flex;
    gap: 10px;
    margin-bottom: var(--spacing-lg);
}

.hero-features img {
    width: 130px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}



.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    /* Added for absolute positioning of badge */
}

.hero-image img {
    box-shadow: none;
    /* No shadow */
    transition: transform 0.5s ease;
}

.hero-badge {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    z-index: 10;
}

.delay-1000 {
    animation-delay: 4s;
}

.sp-only {
    display: none;
}



/* Hero Button - needs to stand out on orange */
/* Hero Button - needs to stand out on orange */
.hero-cta .btn-primary {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
    color: var(--primary-color);
    font-weight: 800;
    border-bottom: 5px solid #e0e0e0;
    border-radius: 50px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    padding: 18px 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.hero-cta .btn-primary:active {
    transform: translateY(2px);
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

/* Shine animation */
.hero-cta .btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    20% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

/* Footer */
.footer {
    background-color: #FE7A38;
    color: #fff;
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.9rem;
}

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

    .sp-only {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .header-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .logo {
        margin: 0 auto;
    }

    .hamburger {
        position: absolute;
        right: 16px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav ul li {
        border-bottom: 1px solid #eee;
    }

    .nav ul li a {
        display: block;
        padding: 16px 24px;
        color: var(--text-color);
    }

    .nav ul li a.btn {
        margin: 16px 24px;
        text-align: center;
        color: var(--white);
    }

    .hero-container {
        flex-direction: column;
        /* Text on top (default column order) */
        text-align: center;
        gap: var(--spacing-md);
    }

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

    .hero-image {
        max-width: 80%;
    }

    .hero-badge {
        width: 120px;
        height: 120px;
        bottom: -50px;
        right: -30px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-features img {
        width: 105px;
        height: auto;
    }

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

/* Sections General */
.section {
    padding: var(--spacing-xl) 0;
    scroll-margin-top: 80px;
    /* ヘッダー分のオフセット */
}

.section-gray {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

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

.text-primary {
    color: var(--primary-color);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.problem-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;

}

.problem-icon img {
    width: 130px;
    height: 130px;
    object-fit: cover;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.problem-arrow {
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: var(--spacing-lg);
}

.arrow-down {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: var(--spacing-sm);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .problem-arrow {
        font-size: 1.3rem;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    background: #FBF7F3;
    /* Orange background */
    padding: var(--spacing-lg);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    color: var(--white);
    /* White text */
    text-align: center;
    /* Center align content */
}

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

.feature-number {
    color: #FE7A38;
    padding-bottom: 3px;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: #fff;
    background-color: #FE7A38;
    display: inline-block;
    padding-bottom: 0px;
    border-radius: 50px;
    text-align: center;
    padding: 5px 20px;
    /* Center align */
    animation: featurePulse 2s ease-in-out infinite;
}

@keyframes featurePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(254, 122, 56, 0.4);
        border-color: #ffb58f;
    }

    50% {
        box-shadow: 0 0 10px 3px rgba(254, 122, 56, 0.6);
        border-color: #ffb590;
    }
}

.feature-content p {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    /* White text */
    text-align: justify;
    /* Justify - align both left and right edges */
}

/* Flow Section (Vertical) */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    gap: var(--spacing-lg);
}

.flow-step:not(:last-child)::after {
    content: "▼";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
    z-index: 1;
}

.flow-image {
    flex: 0 0 130px;
    height: 130px;
    background: #eee;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-content {
    flex: 1;
    text-align: left;
}

.flow-content p {
    text-align: justify;
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.flow-step h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .flow-step {
        flex-direction: column;
        text-align: center;
    }

    .flow-content {
        text-align: center;
    }
}

/* Price Section */
.price-list {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

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

.price-item:hover {
    background-color: var(--secondary-color);
}

.price-name {
    font-weight: 700;
}

.price-value {
    color: var(--primary-color);
    font-weight: 700;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-q {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.faq-a {
    padding-left: var(--spacing-md);
}

/* CTA Section */
.cta-section {
    background: #FE7A38;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.cta-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-decoration-left {
    top: -100px;
    left: -100px;
}

.cta-decoration-right {
    bottom: -100px;
    right: -100px;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-feature-icon {
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-feature-text {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.8rem;
    }

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

    .cta-feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

.btn-white:hover {
    background: #f0f0f0;
}

/* CTA Section Simple (Before Flow) */
.cta-section-simple {
    background: var(--primary-color);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* CTA Simple Decorative elements */
.cta-simple-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-simple-decoration-left {
    top: -100px;
    left: -100px;
}

.cta-simple-decoration-right {
    bottom: -100px;
    right: -100px;
}

.cta-simple-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.cta-simple-desc {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    opacity: 0.95;
}

.cta-simple-button {
    margin-top: var(--spacing-md);
}

.cta-simple-button .btn-primary {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
    color: var(--primary-color);
    font-weight: 800;
    border-bottom: 5px solid #e0e0e0;
    border-radius: 50px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    padding: 18px 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-simple-button .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.cta-simple-button .btn-primary:active {
    transform: translateY(2px);
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

/* Shine animation for CTA Simple button */
.cta-simple-button .btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 0%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}


@media (max-width: 768px) {
    .cta-simple-title {
        font-size: 1.6rem;
    }

    .cta-simple-desc {
        font-size: 1rem;
    }
}


/* Contact Form Section */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.contact-form .required {
    color: #FE7A38;
    font-size: 0.8rem;
    margin-left: 5px;
    background: #fce6db;
    padding: 2px 6px;
    border-radius: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(254, 122, 56, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .form-submit {
    margin-top: var(--spacing-lg);
}

.contact-form button[type="submit"] {
    border: none;
    /* 黒い縁を削除 */
}

/* Profile Section */
.profile-container {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    max-width: 900px;
    margin: 50px auto 0;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-color: #E56220;
    border: 2px solid #E56220;
}

.profile-image {
    flex: 0 0 200px;
}

.profile-image img {
    margin-top: 20px;
    width: 180px;
    height: 200px;
    object-fit: cover;
}

.profile-content {
    flex: 1;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.profile-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.profile-greeting {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid #E56220;
    line-height: 1.8;
}

.profile-greeting p {
    margin-bottom: 0;
    text-align: left;
}


.profile-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.profile-description p {
    margin-bottom: var(--spacing-sm);
    text-align: justify;
}

.profile-skills h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.profile-skills ul {
    list-style: none;
    padding-left: 0;
}

.profile-skills li {
    padding: var(--spacing-sm) 0;
    padding-left: 20px;
    position: relative;
}

.profile-skills li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .profile-image {
        flex: 0 0 auto;
    }

    .profile-skills {
        text-align: left;
    }

    .problem-grid {
        gap: 10px;
    }

    .features-grid {
        gap: 10px;
    }

    .cta-features {
        gap: 10px;
    }
}

/* Fixed CTA Button for Mobile */
.fixed-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .fixed-cta-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        z-index: 999;

    }

    .fixed-cta-mobile .btn {
        width: 100%;
        display: block;
    }

    .fixed-cta-mobile .arrow-small {
        top: -2px;
    }
}

/* Small arrow */
.arrow-small {
    font-size: 0.8em;
    vertical-align: middle;
    position: relative;
    top: -0px;
}