.crm-home {
    background: #DDE8D8;
}
.crm-container{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
/* HERO */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    min-height: 62vh;
    gap: 30px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(32,64,40,0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,215,0,0.12), transparent 30%),
        linear-gradient(to right, #EDF4EA, #DDE8D8);
}
.hero-left {
    flex: 1;
    padding-left: 40px;
}
.hero-badge {
    background: rgba(32,64,40,0.1);
    color: #204028;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-left h1 {
    font-size: 48px;
    line-height: 1.15;
    color: #204028;
    margin-bottom: 25px;
}
.hero-left p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.secondary-btn {
    background: transparent;
    border: 2px solid #204028;
    color: #204028;
}
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.crm-preview-card {
    background: #F4F8F1;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    animation: floatCard 4s ease-in-out infinite;
    width: 100%;
    max-width: 420px;
}
.preview-header {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}
/* FULLSCREEN HERO IMAGE */
.hero-banner-section{
    width:100%;
    height:100vh;
    overflow:hidden;
    position:relative;
    background:#000;
    z-index:1;
    margin-top:-20px;
}
.hero-banner-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.activity-item {
    padding: 16px;
    background: #EDF4EA;
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}
.dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}
.green { background: #16a34a; }
.yellow { background: #eab308; }
.red { background: #dc2626; }
.blue { background: #2563eb; }
/* MODERN ORG CHART */
.hierarchy-section h2{
    text-align:center;
    color:#204028;
    font-size:36px;
    margin-bottom:20px;
}
.hierarchy-section{
    padding:25px 20px;
}
.org-chart{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}
.org-level{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:22px;
}
.org-node{
    width:150px;
    min-height:70px;
    background:#F4F8F1;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    box-shadow:
        0 12px 28px rgba(0,0,0,.08);
    transition:.3s ease;
    border:1px solid rgba(32,64,40,.08);
}
.org-node i{
    font-size:18px;
    color:#204028;
}
.org-node span{
    font-weight:700;
    font-size:14px;
    color:#204028;
    text-align:center;
}
.org-node:hover{
    transform:translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0,0,0,.12);
}
.super-node{
    background:#204028;
}
.super-node i,
.super-node span{
    color:#FFD700;
}
.manager-node{
    background:#14532d;
}
.manager-node i,
.manager-node span{
    color:white;
}
.employee-node{
    background:#1E293B;
}
.employee-node i,
.employee-node span{
    color:white;
}
/* ROLE ICON COLORS */
/* Super Admin */
.super-node i{
    color:#FFD700;
}
/* Manager */
.manager-node i{
    color:#DC2626;
}
/* Employee */
.employee-node i{
    color:#F97316;
}
.connector{
    width:4px;
    height:20px;
    background:#204028;
    border-radius:20px;
}
/* MODULES */
.modules-section {
    padding: 40px 0;
}
.modules-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 28px;
    color: #204028;
}
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
@media(max-width: 992px){
    .modules-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width: 576px){
    .modules-grid{
        grid-template-columns: 1fr;
    }
}
.module-card {
    background: #F4F8F1;
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 95px;
    padding: 12px 14px;
    width: 100%;
    box-sizing: border-box;
    box-shadow:
        0 6px 18px rgba(0,0,0,.06);
}
.module-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 35px rgba(0,0,0,.14);
    border-color: #204028;
}
.module-card h3 {
    color: #204028;
    margin-bottom: 6px;
    font-size: 20px;
}
.module-card p{
    font-size:14px;
    line-height:1.4;
    margin:0;
    color:#64748b;
}
.module-icon{
    width:30px;
    height:30px;
    border-radius:7px;
    background:#EDF4EA;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    color:#204028;
    margin-bottom:0;
    flex-shrink:0;
}
.module-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom: 4px;
}
.module-header h3{
    margin:0;
}
.module-card:hover .module-icon{
    background:#204028;
    color:#FFD700;
}
/* STATS */
.stats-section {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}
.stat-card {
    background: #204028;
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 10px;
}
.stat-card h2 {
    font-size: 42px;
    color: gold;
    margin-bottom: 10px;
}
/* SLIDER */
/* FEATURE MARQUEE */
.feature-slider{
    overflow:hidden;
    background:#204028;
    padding:8px 0;
    position:relative;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    margin-top:15px;
}
.slider-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollSlider 35s linear infinite;
}
.feature-slider:hover .slider-track{
    animation-play-state:paused;
}
.slide{
    color:#fff;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
    padding:0 28px;
}
/* MOLECULLI BRAND EFFECT */
.moleculli{
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    animation:
        moleculliPulse 1.8s ease-in-out infinite,
        moleculliFloat 3s ease-in-out infinite;
}
/* LIGHT */
.moleculli-light{
    color:#00D2FF;
    text-shadow:
        0 0 6px rgba(125,211,252,.9),
        0 0 12px rgba(125,211,252,.7),
        0 0 24px rgba(125,211,252,.5);
}
/* DARK */
.moleculli-dark{
    color:#93C5FD;
    font-weight:900;

    text-shadow:
        0 0 8px #93C5FD,
        0 0 16px #60A5FA,
        0 0 30px #3B82F6,
        0 0 50px #2563EB,
        0 0 80px #1D4ED8,
        0 0 110px #1D4ED8;
}
.moleculli{
    filter: brightness(1.15);
}
@keyframes moleculliPulse{
    0%{
        opacity:.55;
        scale:1;
    }
    50%{
        opacity:1;
        scale:1.08;
    }
    100%{
        opacity:.55;
        scale:1;
    }
}
@keyframes moleculliFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-2px);
    }
    100%{
        transform:translateY(0);
    }
}
/* TRUE INFINITE LOOP */
@keyframes scrollSlider{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
.dashboard-preview {
    padding: 20px 0 40px;;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
}
.preview-left {
    flex: 1;
}
.preview-left h2 {
    font-size: 38px;
    color: #204028;
    margin-bottom: 18px;
    white-space: nowrap;
}
.preview-left p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}
.role-list {
    display: grid;
    grid-template-columns:repeat(5,1fr);
    gap: 15px;
    margin-top:25px;
}
.role-item {
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    font-size:15px;
    color: #FFD700;
    background: #1E293B;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.10),
        inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all .3s ease;
    height:110px;
    min-height:110px;
    max-height:110px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:8px;
}
.role-item span{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    line-height:1.3;
    min-height:auto;
    font-size:14px;
}
.role-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 35px rgba(0,0,0,0.18);
}
.role-item:nth-child(1) {
    background: #1E293B;
}
.role-item:nth-child(2) {
    background: #0F172A;
}
.role-item:nth-child(3) {
    background: #1F3A5F;
}
.role-item:nth-child(4) {
    background: #243B53;
}
.role-item:nth-child(5) {
    background: #274C77;
}
.role-item:nth-child(6) {
    background: #2D5A4A;
}
.role-item:nth-child(7) {
    background: #3B5249;
}
.role-item:nth-child(8) {
    background: #374151;
}
.role-item:nth-child(9) {
    background: #2B2D42;
}
.role-item:nth-child(10) {
    background: #3D405B;
}
body{
    overflow-x:hidden;
}
.preview-right {
    flex: 1;
    display:flex;
    align-items: stretch;
}
.preview-right img {
    width: 100%;
    height:auto;
    object-fit:contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
/* FLOATING BACKGROUND CIRCLES */
.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.hero-section::before {
    width: 300px;
    height: 300px;
    background: rgba(32,64,40,0.08);
    top: -100px;
    right: -80px;
}
.hero-section::after {
    width: 220px;
    height: 220px;
    background: rgba(255,215,0,0.12);
    bottom: -60px;
    left: -60px;
}
.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* CRM IMAGE SLIDER */
.crm-slider-section {
    padding: 40px 0;
    overflow: hidden;
    background: #EDF4EA;
    width: 100%;
}
.slider-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 20px;
}
.slider-header h2 {
    font-size: 38px;
    color: #204028;
    margin-bottom: 15px;
}
.slider-header p {
    color: #666;
    font-size: 18px;
}
.crm-image-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.image-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: imageScroll 30s linear infinite;
}
/* PAUSE IMAGE SLIDER */
.crm-image-slider:hover .image-track {
    animation-play-state: paused;
}
.image-track img {
    width: 350px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: 0.3s;
}
.image-track img:hover {
    transform: scale(1.03);
}
@keyframes imageScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* TESTIMONIALS */
.testimonial-section {
    padding: 80px 0 40px;
    background: #EDF4EA;
    position: relative;
    z-index: 2;
}
.testimonial-section h2 {
    text-align: center;
    font-size: 46px;
    color: #204028;
    margin-bottom: 28px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}
.testimonial-card {
    background: #F4F8F1;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    color:#204028;
    transition:.3s;
}
.testimonial-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-card h4 {
    color:#204028;
    transition:.3s;
}
/* CARD 1 */
.testimonial-card:nth-child(1):hover{
    background:#e1b291;
}
/* CARD 2 */
.testimonial-card:nth-child(2):hover{
    background:#e07fb0;
}
/* CARD 3 */
.testimonial-card:nth-child(3):hover{
    background:#ddb495;
}
.crm-slider-section{
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
/* FOOTER COMPACT */
.website-footer {
    background: #204028;
    color: #ffffff;
    margin-top: 40px;
    padding-top: 40px;
}
.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 28px;
}
.footer-brand h2 {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 24px;
}
.footer-brand p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 14px;
}
.footer-links h4 {
    margin-bottom: 12px;
    color: #FFD700;
    font-size: 16px;
}
.footer-links a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 14px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 14px;
    color: #9ca3af;
    font-size: 13px;
}
/* RESPONSIVE */
@media(max-width: 992px){
    .footer-container{
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 600px){
    .footer-container{
        grid-template-columns: 1fr;
    }
}
/* SOCIAL MEDIA */
.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}
.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#FFD700;
    text-decoration:none;
    font-size:18px;
    transition:all .3s ease;
}
.footer-social a:hover{
    background:#FFD700;
    color:#111827;
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(255,215,0,.25);
}
/* SECURITY */
.security-section{
    padding:55px 5%;
    background:#EDF4EA;
}
.security-header{
    text-align:center;
    margin-bottom:28px;
}
.security-header h2{
    font-size:38px;
    color:#204028;
    margin-bottom:10px;
}
.security-header p{
    color:#4b5563;
    font-size:18px;
}
.security-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}
.security-card{
    background:#F4F8F1;
    padding:15px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.security-card:hover{
    transform:translateY(-8px);
    background:#70bd66;
}
.security-card:hover h3,
.security-card:hover p{
    color:#111827;
}
.security-card h3{
    color:#204028;
    margin:15px 0;
}
.security-card p{
    color:#4b5563;
    line-height:1.7;
    margin:0;
}
.security-icon{
    font-size:40px;
    margin-bottom:10px;
}
.section-shift-right {
    padding-inline: 24px;
}
@media(max-width: 992px) {
    .role-list {
        grid-template-columns: repeat(2,1fr);
    }}
@media(max-width: 576px) {
    .role-list {
        grid-template-columns: 1fr;
    }}
/* BUSINESS / INDUSTRIES / USERS */
.business-section,
.perfect-section,
.industries-section,
.business-header{
    text-align:center;
    margin-bottom:20px;
}
.business-header h2{
    font-size:34px;
    color:#204028;
    margin-bottom:8px;
}
.business-header p{
    font-size:18px;
    color:#4b5563;
}
/* BUILT FOR SLIDER */
.business-slider-wrapper{
    position:relative;
    width:100%;
    max-width:1100px;
    margin:auto;
}
.business-slider{
    overflow:hidden;
    width: 900px;
    margin: auto;
}
.business-track{
    display:flex;
    transition:transform .6s ease;
    width:max-content;
    gap:30px;
}
.business-slide{
    width:900px;
    flex-shrink:0;
    min-width:900px;
    flex:0 0 900px;
    display:flex;
    align-items:center;
    gap:40px;
    background:#F4F8F1;
    border-radius:24px;
    padding:20px;
    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}
.business-slide img{
    width:50%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
}
.business-content{
    flex:1;
    max-width:520px;
}
.business-content h3{
    font-size:34px;
    color:#204028;
    margin-bottom:15px;
}
.business-content p{
    font-size:18px;
    color:#4b5563;
    line-height:1.8;
}
.business-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#204028;
    color:#FFD700;
    cursor:pointer;
    z-index:5;
}
.business-nav.prev{
    left:-25px;
}
.business-nav.next{
    right:-25px;
}
.business-nav:hover{
    transform:translateY(-50%) scale(1.08);
}
.business-features{
    margin-top:18px;
    padding:0;
    list-style:none;
}
.business-features li{
    margin-bottom:10px;
    padding-left:0;
    position:relative;
    color:#204028;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
}
.business-features li::before{
    content:"✓";
    position:static;
    color:#16A34A;
    font-weight:700;
}
/* PERFECT FOR */
.perfect-grid,
.industries-grid,
.users-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
}
.perfect-card,
.industry-card,
.user-card{
    background:#1E293B;
    color:#FFD700;
    padding:20px;
    border-radius:18px;
    text-align:center;
    font-weight:700;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.perfect-card:hover,
.industry-card:hover,
.user-card:hover{
    transform:translateY(-6px);
    background:#204028;
}
/* PERFECT FOR SLIDER */
.perfect-slider{
    overflow:hidden;
    position:relative;
    width:100%;
    padding:10px 0;
}
.perfect-track{
    display:flex;
    gap:18px;
    width:max-content;
    animation:perfectScroll 24s linear infinite;
}
.perfect-slider:hover .perfect-track{
    animation-play-state:paused;
}
.perfect-pill{
    background:#1E293B;
    color:#FFD700;
    padding:16px 24px;
    border-radius:999px;
    font-weight:700;
    white-space:nowrap;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.3s ease;
}
.perfect-pill:hover{
    transform:translateY(-5px);
    background:#204028;
}
.perfect-pill:nth-child(1){
    background:#1E293B;
}
.perfect-pill:nth-child(2){
    background:#223051;
}
.perfect-pill:nth-child(3){
    background:#1F3A5F;
}
.perfect-pill:nth-child(4){
    background:#243B53;
}
.perfect-pill:nth-child(5){
    background:#274C77;
}
.perfect-pill:nth-child(6){
    background:#2D5A4A;
}
@keyframes perfectScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/* INDUSTRIES CARDS */
.industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.industry-card{
    background:#F4F8F1;
    border-radius:18px;
    padding:22px;
    text-align:left;
    color:#204028;
    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
    overflow:hidden;
}
.industry-card:hover{
    transform:translateY(-8px);
    color:white;
}
.industry-card h3{
    margin-bottom:10px;
    font-size:20px;
}
.industry-card p{
    margin:0;
    line-height:1.6;
    color:#64748b;
    transition:.3s;
}
.industry-card:hover p{
    color:rgba(255,255,255,.85);
}
.industry-icon{
    width:70px;
    height:70px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:12px;
}
/* Accent Colors */
.real-estate{
    border-top:5px solid #16A34A;
}
.real-estate .industry-icon{
    background:#DCFCE7;
}
.real-estate:hover{
    background:#16A34A;
}
.retail{
    border-top:5px solid #2563EB;
}
.retail .industry-icon{
    background:#DBEAFE;
}
.retail:hover{
    background:#2563EB;
}
.logistics{
    border-top:5px solid #b516c4;
}
.logistics .industry-icon{
    background:#FED7AA;
}
.logistics:hover{
    background:#b516c4;
}
.enterprise{
    border-top:5px solid #7C3AED;
}
.enterprise .industry-icon{
    background:#E9D5FF;
}
.enterprise:hover{
    background:#7C3AED;
}
/* Responsive */
@media(max-width:992px){
    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .industries-grid{
        grid-template-columns:1fr;
    }
}
/* ACHIEVEMENTS SECTION */

.achievement-section{
    padding:50px 24px;
}

.achievement-header{
    text-align:center;
    margin-bottom:35px;
}

.achievement-header h2{
    font-size:38px;
    color:#204028;
    margin-bottom:10px;
}

.achievement-header p{
    color:#64748b;
    font-size:18px;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.achievement-card{
    background:#F4F8F1;
    border-radius:20px;
    padding:28px;
    text-align:left;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s ease;
    border:1px solid rgba(32,64,40,.08);
}

.achievement-card:hover{
    transform:translateY(-8px);
    background:#529b64;
}

.achievement-card:hover h3,
.achievement-card:hover p{
    color:white;
}

.achievement-icon{
    font-size:42px;
    margin-bottom:15px;
}

.achievement-card h3{
    color:#204028;
    margin-bottom:10px;
}

.achievement-card p{
    color:#64748b;
    line-height:1.7;
    margin:0;
}

@media(max-width:992px){
    .achievement-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .achievement-grid{
        grid-template-columns:1fr;
    }
}
.feedback-section{
    padding:50px 20px;
}
.feedback-box{
    max-width:700px;
    margin:auto;
    background:#F4F8F1;
    padding:25px;
    border-radius:16px;
    border:1px solid #DDE8D8;
    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}
.feedback-box h2{
    text-align:center;
    color:#204028;
    margin-bottom:10px;
}
.feedback-box p{
    text-align:center;
    color:#64748b;
    margin-bottom:25px;
}
.feedback-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}
.feedback-box input,
.feedback-box textarea{
    width:100%;
    padding:14px;
    border:1px solid #D5DDD3;
    border-radius:10px;
    background:white;
}
.feedback-box textarea{
    resize:none;
    min-height:120px;
}
.feedback-box button{
    background:#204028;
    color:white;
    border:none;
    padding:14px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
}
.feedback-box button:hover{
    background:#2B5A39;
}
