/* Main Website Styles */
* {
    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: #5D5A56;
    background-color: #F5F3F0;
}

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

/* Header */
header {
    background: rgba(245, 243, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(93, 90, 86, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #9B8B7A;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #9B8B7A;
}

/* Main Content */
main {
    margin-top: 70px;
}

#hero {
    background: linear-gradient(135deg, #B5A394 0%, #A8998A 50%, #9B8B7A 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

/* Profile Image Styling */
.profile-image-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 2rem;
}

/* Hero Chat Button Styling */
.hero-chat-button {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.chat-toggle-hero {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chat-toggle-hero:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.chat-toggle-hero:active {
    transform: translateY(0);
}

.chat-toggle-hero svg {
    width: 20px;
    height: 20px;
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #9B8B7A;
}

section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(93, 90, 86, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(155, 139, 122, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(93, 90, 86, 0.15);
}

.project-card h3 {
    color: #9B8B7A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-card p {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #5D5A56;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(181, 163, 148, 0.2);
    color: #9B8B7A;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Section */
.contact-links {
    margin-top: 2rem;
    text-align: center;
}

.contact-links a {
    display: inline-block;
    background: #9B8B7A;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.contact-links a:hover {
    background: #A8998A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}
/* A
bout Section Enhancements */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-content h3 {
    color: #9B8B7A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    text-align: left;
    line-height: 1.7;
}

/* Inline Chat Assistant */
.chat-assistant-inline {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(181, 163, 148, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(155, 139, 122, 0.2);
}

.chat-assistant-inline p {
    margin-bottom: 1rem;
    color: #5D5A56;
}

.chat-toggle-inline {
    background: #9B8B7A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.chat-toggle-inline:hover {
    background: #A8998A;
}

.chat-toggle-inline svg {
    width: 20px;
    height: 20px;
}

/* Experience Section - Timeline Diagram */
#experience {
    background: rgba(245, 243, 240, 0.5);
    padding: 80px 0;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Central Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #9B8B7A, #A8998A, #B5A394);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Timeline Items */
.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Timeline Marker (Dot and Date) */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #9B8B7A;
    border-radius: 50%;
    border: 4px solid #F5F3F0;
    box-shadow: 0 0 0 4px #9B8B7A;
    margin-bottom: 0.5rem;
}

.timeline-date {
    background: #9B8B7A;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(155, 139, 122, 0.3);
}

/* Timeline Content */
.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(93, 90, 86, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 139, 122, 0.1);
}

/* Arrow pointing to timeline */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.9);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.9);
}

.timeline-company {
    color: #9B8B7A;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-position {
    color: #5D5A56;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.timeline-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #5D5A56;
    line-height: 1.6;
}

.timeline-achievements li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #9B8B7A;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Timeline Skills Tags - Same as Project Tech Tags */
.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(155, 139, 122, 0.2);
}

.timeline-skills span {
    background: rgba(181, 163, 148, 0.2);
    color: #9B8B7A;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.timeline-skills span:hover {
    background: rgba(181, 163, 148, 0.3);
}

/* Hover Effects */
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(93, 90, 86, 0.2);
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-duration {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .experience-item {
        padding: 1.5rem;
    }
    
    .chat-assistant-inline {
        padding: 1rem;
    }
    
    /* Profile image responsive design */
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .profile-image-container {
        margin-bottom: 1.5rem;
    }
    
    /* Hero chat button responsive design */
    .chat-toggle-hero {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-chat-button {
        margin-top: 2rem;
    }
    
    /* Timeline responsive design */
    .timeline-container {
        padding: 1rem 0;
    }
    
    .timeline-line {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
        position: absolute;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: rgba(255, 255, 255, 0.9) !important;
        border-left-color: transparent !important;
    }
    
    .timeline-date {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .timeline-position {
        font-size: 1.2rem;
    }
    
    .timeline-company {
        font-size: 1rem;
    }
}/* S
ection Introduction Text */
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5D5A56;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Insights Section */
#insights {
    background: rgba(245, 243, 240, 0.3);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(93, 90, 86, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(155, 139, 122, 0.1);
    position: relative;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(93, 90, 86, 0.15);
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.insight-date {
    background: rgba(181, 163, 148, 0.2);
    color: #9B8B7A;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.insight-category {
    background: #9B8B7A;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-card h3 {
    color: #5D5A56;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-card p {
    color: #5D5A56;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.insight-tags span {
    background: rgba(181, 163, 148, 0.2);
    color: #9B8B7A;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Travel Section */
#travel {
    background: rgba(245, 243, 240, 0.5);
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.travel-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(93, 90, 86, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(155, 139, 122, 0.1);
    overflow: hidden;
}

.travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(93, 90, 86, 0.15);
}

.travel-image-placeholder {
    background: linear-gradient(135deg, #B5A394 0%, #A8998A 50%, #9B8B7A 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.travel-image-placeholder svg {
    opacity: 0.8;
}

.travel-content {
    padding: 2rem;
}

.travel-content h3 {
    color: #5D5A56;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.travel-content p {
    color: #5D5A56;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.travel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.travel-tags span {
    background: rgba(181, 163, 148, 0.2);
    color: #9B8B7A;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .insights-grid,
    .travel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-card,
    .travel-content {
        padding: 1.5rem;
    }
    
    .travel-image-placeholder {
        height: 100px;
    }
    
    .insight-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}/* Subp
age Specific Styles */

/* Logo link styling */
.logo a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover {
    color: #A8998A;
}

/* Active navigation link */
.nav-links a.active {
    color: #9B8B7A;
    font-weight: 600;
}

/* Subpage Hero Sections */
#insights-hero,
#life-hero {
    background: linear-gradient(135deg, #B5A394 0%, #A8998A 50%, #9B8B7A 100%);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
    margin-top: 70px;
}

#insights-hero h1,
#life-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

#insights-hero .hero-subtitle,
#life-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Insights Page Specific */
#insights-content {
    padding: 80px 0;
}

.insight-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(181, 163, 148, 0.1) 0%, rgba(168, 153, 138, 0.1) 100%);
    border: 2px solid rgba(155, 139, 122, 0.2);
}

.insight-card.featured h2 {
    font-size: 2rem;
    color: #9B8B7A;
    margin-bottom: 1.5rem;
}

.insight-preview {
    background: rgba(245, 243, 240, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.insight-preview h4 {
    color: #9B8B7A;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.insight-preview ul {
    list-style: none;
    padding: 0;
}

.insight-preview li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #5D5A56;
    line-height: 1.6;
}

.insight-preview li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #9B8B7A;
    font-weight: bold;
}

.insights-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(181, 163, 148, 0.1);
    border-radius: 15px;
}

.insights-cta h3 {
    color: #9B8B7A;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insights-cta a {
    color: #9B8B7A;
    font-weight: 600;
    text-decoration: none;
}

.insights-cta a:hover {
    color: #A8998A;
    text-decoration: underline;
}

/* Life Page Specific */
#life-content {
    padding: 80px 0;
}

.life-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.life-intro h2 {
    color: #9B8B7A;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.life-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5D5A56;
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.life-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(93, 90, 86, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(155, 139, 122, 0.1);
    overflow: hidden;
}

.life-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(93, 90, 86, 0.15);
}

.life-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(181, 163, 148, 0.1) 0%, rgba(168, 153, 138, 0.1) 100%);
    border: 2px solid rgba(155, 139, 122, 0.2);
}

.life-image-placeholder {
    background: linear-gradient(135deg, #B5A394 0%, #A8998A 50%, #9B8B7A 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.life-card.featured .life-image-placeholder {
    height: 150px;
}

.life-image-placeholder svg {
    opacity: 0.8;
}

.life-content {
    padding: 2rem;
}

.life-content h3 {
    color: #5D5A56;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.life-content p {
    color: #5D5A56;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.life-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.life-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.life-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.life-tags span {
    background: rgba(181, 163, 148, 0.2);
    color: #9B8B7A;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.life-philosophy {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(181, 163, 148, 0.1);
    border-radius: 15px;
}

.life-philosophy h2 {
    color: #9B8B7A;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.life-philosophy blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #5D5A56;
    margin: 2rem 0;
    padding: 0 2rem;
    border-left: 4px solid #9B8B7A;
    line-height: 1.7;
}

.life-philosophy p {
    color: #9B8B7A;
    font-weight: 600;
    margin-top: 1rem;
}

.life-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(181, 163, 148, 0.1);
    border-radius: 15px;
}

.life-cta h3 {
    color: #9B8B7A;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.life-cta a {
    color: #9B8B7A;
    font-weight: 600;
    text-decoration: none;
}

.life-cta a:hover {
    color: #A8998A;
    text-decoration: underline;
}

/* Responsive Design for Subpages */
@media (max-width: 768px) {
    #insights-hero h1,
    #life-hero h1 {
        font-size: 2.5rem;
    }
    
    #insights-hero .hero-subtitle,
    #life-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    #insights-hero,
    #life-hero {
        padding: 100px 0 60px 0;
    }
    
    .insight-card.featured,
    .life-card.featured {
        grid-column: 1;
    }
    
    .life-philosophy blockquote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .insights-cta,
    .life-cta,
    .life-philosophy {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .life-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .life-content {
        padding: 1.5rem;
    }
    
    .life-image-placeholder {
        height: 100px;
    }
}/* Subs
cribe Options Styling */
.subscribe-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.subscribe-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(155, 139, 122, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 90, 86, 0.15);
}

.subscribe-item h4 {
    color: #9B8B7A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subscribe-item p {
    color: #5D5A56;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.subscribe-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 140px;
}

.subscribe-btn.active {
    background: #9B8B7A;
    color: white;
}

.subscribe-btn.active:hover {
    background: #A8998A;
    transform: translateY(-1px);
}

.subscribe-btn:disabled {
    background: rgba(155, 139, 122, 0.3);
    color: #A8998A;
    cursor: not-allowed;
    opacity: 0.7;
}

.subscribe-btn:disabled:hover {
    transform: none;
}

/* Responsive Design for Subscribe Options */
@media (max-width: 768px) {
    .subscribe-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .subscribe-item {
        padding: 1.5rem;
    }
    
    .subscribe-item h4 {
        font-size: 1.2rem;
    }
    
    .subscribe-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
}