:root{--bg-light: #ffffff;--bg-dark: #1e1e1e;--text-light: #222222;--text-dark: #dddddd;--accent: #3498db;--toolbar-bg-light: #f0f0f0;--toolbar-bg-dark: #2a2a2a}body[data-theme=light]{background:var(--toolbar-bg-light);color:var(--text-light)}body[data-theme=dark]{background:var(--bg-dark);color:var(--text-dark)}.app-container{display:flex;flex-direction:column;padding:1rem;max-width:1200px;margin:0 auto}.toolbar{display:flex;flex-wrap:nowrap;gap:.3rem;padding:.35rem .5rem;background:var(--toolbar-bg-light);border:none;border-radius:8px;margin-bottom:.25rem;box-shadow:none;overflow-x:auto;scrollbar-width:thin;justify-content:center}body[data-theme=dark] .toolbar{background:var(--toolbar-bg-dark);border-color:transparent;box-shadow:none}.toolbar button,.toolbar select,.toolbar input[type=number],.toolbar input[type=color]{flex-shrink:0}.toolbar-section{display:flex;align-items:center;gap:.35rem;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;white-space:nowrap;min-width:0}.toolbar-label{display:none}.toolbar-btn{display:flex;align-items:center;gap:.25rem;background:var(--bg-light);color:var(--text-light);border:1px solid #ddd;border-radius:6px;padding:.35rem .6rem;font-size:.8rem;font-weight:500;cursor:pointer;transition:all .2s ease;white-space:nowrap;min-height:28px}.toolbar-btn:hover{background:var(--accent);color:#fff;border-color:var(--accent);transform:translateY(-1px);box-shadow:0 2px 8px #3498db4d}.toolbar-btn.primary{background:var(--accent);color:#fff;border-color:var(--accent)}.toolbar-btn.primary:hover{background:#2980b9;border-color:#2980b9}.toolbar-btn.active{background:var(--accent);color:#fff;border-color:var(--accent);box-shadow:inset 0 2px 4px #0003}body[data-theme=dark] .toolbar-btn{background:var(--bg-dark);color:var(--text-dark);border-color:#555}body[data-theme=dark] .toolbar-btn:hover{background:var(--accent);color:#fff;border-color:var(--accent)}.toolbar-select{background:var(--bg-light);color:var(--text-light);border:1px solid #ddd;border-radius:6px;padding:.35rem .5rem;font-size:.8rem;cursor:pointer;transition:all .2s ease;min-width:120px}.toolbar-select:hover,.toolbar-select:focus{border-color:var(--accent);outline:none;box-shadow:0 0 0 2px #3498db33}body[data-theme=dark] .toolbar-select{background:var(--bg-dark);color:var(--text-dark);border-color:#555}.toolbar-color-picker{width:40px;height:32px;border:1px solid #ddd;border-radius:6px;cursor:pointer;padding:0;background:none;transition:all .2s ease}.toolbar-color-picker:hover{border-color:var(--accent);transform:scale(1.05)}body[data-theme=dark] .toolbar-color-picker{border-color:#555}.color-picker-container{display:flex;align-items:center;gap:.5rem;flex-shrink:0}.color-picker-container label{font-size:.9rem;font-weight:500}.color-picker-container input[type=color]{width:40px;height:32px;border:1px solid #ccc;border-radius:4px;cursor:pointer;padding:0;background:none}body[data-theme=dark] .color-picker-container input[type=color]{border-color:#555}.modal{position:fixed;top:0;left:0;width:100%;height:100%;background:#00000080;display:flex;justify-content:center;align-items:center;z-index:2000;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.modal-content{background:var(--bg-light);color:var(--text-light);border:1px solid #ddd;border-radius:12px;padding:2rem;max-width:500px;width:90%;max-height:80vh;overflow-y:auto;box-shadow:0 10px 30px #0003;animation:modalSlideIn .3s ease-out}@keyframes modalSlideIn{0%{opacity:0;transform:translateY(-20px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}body[data-theme=dark] .modal-content{background:var(--bg-dark);color:var(--text-dark);border-color:#444;box-shadow:0 10px 30px #00000080}.modal-content h3{margin-top:0;margin-bottom:1rem;color:var(--accent);font-size:1.4rem}.modal-content button{background:var(--toolbar-bg-light);color:var(--text-light);border:1px solid #ccc;border-radius:6px;padding:.6rem 1.2rem;cursor:pointer;transition:all .2s;margin:.25rem;font-weight:500}.modal-content button:hover{background:var(--accent);color:#fff;border-color:var(--accent)}body[data-theme=dark] .modal-content button{background:var(--toolbar-bg-dark);color:var(--text-dark);border-color:#555}body[data-theme=dark] .modal-content button:hover{background:var(--accent);color:#fff;border-color:var(--accent)}.share-url-container{display:flex;gap:.5rem;margin:1.5rem 0}.share-url-input{flex:1;padding:.75rem;border:1px solid #ccc;border-radius:6px;font-family:Courier New,monospace;font-size:.9rem;background:var(--bg-light);color:var(--text-light);transition:border-color .2s}.share-url-input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 2px #3498db33}.copy-btn{padding:.75rem 1.5rem;background:var(--accent);color:#fff;border:none;border-radius:6px;cursor:pointer;transition:all .2s;font-weight:600;white-space:nowrap}.copy-btn:hover{background:#2980b9;transform:translateY(-1px);box-shadow:0 4px 12px #3498db4d}.share-note{font-size:.9rem;color:#666;margin:1.5rem 0;padding:1rem;background:#f8f9fa;border-radius:6px;border-left:4px solid var(--accent)}body[data-theme=dark] .share-url-input{background:var(--toolbar-bg-dark);color:var(--text-dark);border-color:#555}body[data-theme=dark] .share-note{color:#aaa;background:#2a2a2a}.export-modal .modal-content{max-width:600px;padding:0;overflow:hidden}.export-header{background:linear-gradient(135deg,var(--accent) 0%,#2980b9 100%);color:#fff;padding:2rem;text-align:center}.export-title{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:.5rem}.export-icon-large{font-size:3rem;animation:bounce 2s infinite}@keyframes bounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-10px)}60%{transform:translateY(-5px)}}.export-title h3{margin:0;font-size:1.8rem;font-weight:700}.export-subtitle{margin:0;opacity:.9;font-size:1rem}.export-options{padding:2rem;display:flex;flex-direction:column;gap:1rem}.export-btn{display:flex;align-items:center;justify-content:space-between;padding:0;background:var(--bg-light);border:2px solid #e0e0e0;border-radius:12px;cursor:pointer;transition:all .3s ease;text-align:left;overflow:hidden;position:relative}.export-btn:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);transition:left .5s}.export-btn:hover:before{left:100%}.export-btn:hover{transform:translateY(-3px);box-shadow:0 8px 25px #00000026}.export-btn-content{display:flex;align-items:center;gap:1.5rem;padding:1.5rem;flex:1}.export-icon{font-size:2.5rem;min-width:4rem;text-align:center;filter:drop-shadow(0 2px 4px rgba(0,0,0,.1))}.export-info{display:flex;flex-direction:column;gap:.5rem;flex:1}.export-info strong{font-size:1.2rem;color:var(--text-light);font-weight:600}.export-info>span{font-size:.95rem;color:#666;line-height:1.4}.export-features{display:flex;gap:1rem;margin-top:.5rem}.feature{font-size:.8rem;color:var(--accent);font-weight:500}.export-arrow{padding:1.5rem;font-size:1.5rem;color:#ccc;transition:all .3s ease}.export-btn:hover .export-arrow{color:var(--accent);transform:translate(5px)}.pdf-btn:hover{border-color:#e74c3c;background:linear-gradient(135deg,#e74c3c0d,#e74c3c05)}.pdf-btn:hover .export-arrow{color:#e74c3c}.doc-btn:hover{border-color:#2980b9;background:linear-gradient(135deg,#2980b90d,#2980b905)}.doc-btn:hover .export-arrow{color:#2980b9}.txt-btn:hover{border-color:#27ae60;background:linear-gradient(135deg,#27ae600d,#27ae6005)}.txt-btn:hover .export-arrow{color:#27ae60}.export-footer{padding:1.5rem 2rem;background:#f8f9fa;border-top:1px solid #e0e0e0;text-align:center}.cancel-btn{background:transparent;color:#666;border:2px solid #ddd;border-radius:8px;padding:.75rem 2rem;cursor:pointer;transition:all .2s ease;font-weight:500}.cancel-btn:hover{background:#f0f0f0;border-color:#bbb;color:#333}body[data-theme=dark] .export-btn{background:var(--bg-dark);border-color:#444}body[data-theme=dark] .export-info strong{color:var(--text-dark)}body[data-theme=dark] .export-info>span{color:#aaa}body[data-theme=dark] .export-footer{background:#2a2a2a;border-color:#444}body[data-theme=dark] .cancel-btn{color:#aaa;border-color:#555}body[data-theme=dark] .cancel-btn:hover{background:#333;border-color:#666;color:#ddd}.image-container{transition:all .2s ease;-webkit-user-select:none;user-select:none}.image-container.selected .draggable-image{outline:2px dashed var(--accent)}.draggable-image{transition:border .2s ease;-webkit-user-select:none;user-select:none;display:block}.resize-handles{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}.resize-handle{position:absolute;width:12px;height:12px;background:#3498db;border:2px solid white;border-radius:50%;pointer-events:all;z-index:1001}.resize-handle.nw{top:-6px;left:-6px;cursor:nw-resize}.resize-handle.ne{top:-6px;right:-6px;cursor:ne-resize}.resize-handle.sw{bottom:-6px;left:-6px;cursor:sw-resize}.resize-handle.se{bottom:-6px;right:-6px;cursor:se-resize}.resize-handle:hover{background:#2980b9;transform:scale(1.2)}body[data-theme=dark] .toolbar button,body[data-theme=dark] .toolbar select,body[data-theme=dark] .toolbar input[type=number]{background:var(--toolbar-bg-dark);border-color:#555;color:var(--text-dark)}.toolbar button:hover,.toolbar select:hover,.toolbar input[type=number]:hover{background:var(--accent);color:#fff}.editor{flex-grow:1;width:100%;height:auto;min-height:calc(100vh - 220px);margin:.5rem 0;padding:1rem;border:none;border-radius:4px;resize:none;outline:none;background:var(--bg-light);color:var(--text-light)}body[data-theme=dark] .editor{background:var(--bg-dark);color:var(--text-dark)}.status-bar{font-size:.9rem;padding:.5rem 0}.app-container.fullscreen{margin:0 auto;padding:0;width:100vw;overflow:hidden;display:flex;flex-direction:column}.app-container.fullscreen .main-toolbar,.app-container.fullscreen .fmt-toolbar,.app-container.fullscreen .status-bar,.app-container.fullscreen .toolbar-row-1,.app-container.fullscreen .toolbar-row-2,.app-container.fullscreen .toolbar-row-3{display:none}.app-container.fullscreen .editor{flex:1;width:100%;box-sizing:border-box;padding:20px;margin:0}.status-bar{position:fixed;bottom:0;left:0;right:0;background:var(--background, #fff);color:var(--text, #000);padding:8px 16px;border-top:1px solid #ccc;text-align:center;z-index:1000;font-size:14px}.editor{padding:16px 16px 60px;min-height:100vh}.modal{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:2000}.modal-content{background:#fff;padding:20px;border-radius:8px;display:flex;flex-direction:column;gap:10px}.toast{position:fixed;bottom:80px;right:20px;background:#000000bf;color:#fff;padding:10px 14px;border-radius:4px;font-size:20px;z-index:2000}.toolbar button.active{color:#fff;background-color:red;border-radius:4px}@media (max-width: 768px){.editor{height:calc(100vh - 260px)}}@media (max-width: 480px){.toolbar{gap:.25rem;flex-wrap:wrap;justify-content:flex-start;padding:.35rem .25rem}.toolbar-section{flex:0 0 auto;justify-content:center;align-items:center;gap:.3rem;margin:0}.toolbar button,.toolbar select,.toolbar input[type=number],.toolbar input[type=color]{padding:.3rem .6rem;font-size:.85rem;flex:0 1 auto;margin:.15rem}.toolbar-select{min-width:160px}}.emoji-picker-modal{position:absolute;top:60px;left:10px;z-index:1000}.special-char-picker .char-grid{display:flex;flex-wrap:wrap;gap:10px;margin:10px 0}.special-char-picker .char-grid button{font-size:20px;padding:6px 12px;cursor:pointer}@media (max-width: 1024px){.main-toolbar,.fmt-toolbar{max-height:168px;overflow-y:auto;-webkit-overflow-scrolling:touch}}@media (max-width: 480px){.main-toolbar,.fmt-toolbar{max-height:168px;overflow-y:auto;-webkit-overflow-scrolling:touch}}.image-container,.draggable-image{max-width:100%;height:auto}@media (max-width: 1024px){.toolbar{gap:.3rem;flex-wrap:nowrap;justify-content:flex-start;overflow-x:auto;-webkit-overflow-scrolling:touch;white-space:nowrap;width:100%}.toolbar-select{min-width:140px}.main-toolbar,.fmt-toolbar{scrollbar-gutter:stable both-edges}}@media (max-width: 768px){.editor{height:auto;min-height:70dvh;padding-bottom:calc(72px + env(safe-area-inset-bottom,0px))}.status-bar{font-size:13px;padding:10px 16px calc(10px + env(safe-area-inset-bottom,0px))}.modal-content{width:92%;max-width:92vw;padding:1.25rem}.share-url-input{font-size:.85rem}.export-options{padding:1.25rem}.export-icon{font-size:2rem;min-width:3rem}.export-title h3{font-size:1.4rem}.export-icon-large{font-size:2.4rem}}@media (max-width: 480px){.modal-content{width:95%;max-width:95vw;padding:1rem;max-height:85vh}.toolbar{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;white-space:nowrap;width:100%}.export-title h3{font-size:1.25rem}.export-subtitle{font-size:.9rem}.export-icon{font-size:1.8rem}.export-arrow{font-size:1.2rem;padding:1rem}.export-btn-content{padding:1rem;gap:1rem}.share-url-container{flex-direction:column}.copy-btn{width:100%}}@supports (height: 100dvh){.app-container.fullscreen .editor{min-height:calc(100dvh + -0px)}}body{margin:0;font-family:Arial,sans-serif}.header-container{background:linear-gradient(to right,#84d47f,#296c54)}.header{padding:15px 20px;box-shadow:0 2px 4px #0000001a}.nav{display:flex;align-items:center;justify-content:center;gap:30px}.nav a{margin-top:20px;padding:5px;text-decoration:underline;text-underline-offset:5px;color:#f8f3f3;font-weight:500;font-size:20px}.start-button{margin-top:20px;background-color:#000;color:#fff;border:none;padding:10px 18px;border-radius:5px;cursor:pointer}.homepage-main{background:linear-gradient(to right,#84d47f,#296c54);min-height:35vh;text-align:center;padding:1rem}.logo{display:flex;justify-content:center;align-items:center;gap:10px;flex-wrap:wrap;text-align:center}.logo h1{font-size:1.8rem;color:#296c54;margin:0;background-color:#f4f3f1;padding:22px;border-radius:8px}.logo img{width:200px;height:auto;padding-top:4px}.main-section{padding:2rem 1rem;text-align:center}.main-section h1{font-size:2.2rem;margin:10px 0;color:#fff;line-height:1.4}.main-section p{font-size:1.25rem;margin:0 auto;max-width:850px;color:#fff;padding-top:15px;line-height:1.8}.start-button{margin-top:20px;padding:12px 30px;font-size:1.1rem;background-color:#fff;color:#296c54;border:none;border-radius:30px;cursor:pointer;font-weight:700;box-shadow:0 4px 12px #0003;transition:all .3s ease}.start-button:hover{background-color:#296c54;color:#fff}@media screen and (max-width: 992px){.main-section h1{font-size:1.8rem}.main-section p{font-size:1.1rem;width:100%}.logo h1{font-size:1.4rem;padding:16px}.logo img{width:150px}}@media screen and (max-width: 600px){.main-section h1{font-size:1.6rem}.main-section p{font-size:1rem;line-height:1.6}.start-button{padding:10px 24px;font-size:1rem}}.email-signup{display:flex;justify-content:center;flex-wrap:wrap;gap:10px;margin-bottom:15px}.email-signup input{padding:12px;width:70%;max-width:300px;border:1px solid #ccc;border-radius:25px 0 0 25px;outline:none}.email-signup button{padding:12px 20px;border:none;background-color:#000;color:#fff;border-radius:0 25px 25px 0;cursor:pointer}small{display:block;margin-top:10px;color:#777;font-size:.8rem}.hero-section{background-color:#e6f2f1;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:2rem 1rem;text-align:center}.hero-section h1{font-size:2.5rem;margin:10px 0;color:#2c3e50}.hero-section figure{width:100%;max-width:1000px;margin-top:2rem}.hero-section img{width:100%;height:auto;border-radius:6px;object-fit:cover}.hero-section article{width:90%;max-width:850px;margin-top:2.5rem;text-align:left}.hero-section p{font-size:1.1rem;color:#1f1515;line-height:1.8}@media screen and (max-width: 768px){.hero-section h1{font-size:2rem}.hero-section p{font-size:1rem}.hero-section article{width:95%}}@media screen and (max-width: 480px){.hero-section h1{font-size:1.75rem}.hero-section p{font-size:.95rem;line-height:1.6}}.features-container{background-color:#eafaf3;padding:4rem 1rem;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;text-align:center}.features-container h2{font-size:2.2rem;color:#034136;margin-bottom:3rem}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}.feature-card{background:linear-gradient(145deg,#fff,#f1fff8);border-radius:1.25rem;padding:2.5rem 2rem;text-align:center;border:1px solid #c6f3dd;box-shadow:0 10px 24px #00806014;transition:all .3s ease;position:relative;overflow:hidden;z-index:1}.feature-card:before{content:"";position:absolute;top:-40%;left:-40%;width:180%;height:180%;background:radial-gradient(circle at center,rgba(0,255,153,.07),transparent 70%);transform:rotate(25deg);z-index:0}.feature-card:hover{transform:translateY(-10px) scale(1.025);box-shadow:0 14px 35px #00806026}.icon-box{background:linear-gradient(to bottom,#bdf2d6,#a1eac4);border-radius:1rem;display:inline-flex;align-items:center;justify-content:center;padding:1.2rem;margin-bottom:1.5rem;font-size:2.5rem;color:#046c4e;box-shadow:0 4px 10px #00806026;z-index:1;position:relative;transition:transform .3s ease}.icon-box:hover{transform:scale(1.1)}.feature-card h3{font-size:1.3rem;margin-bottom:.75rem;color:#003c2d;position:relative;z-index:1}.feature-card p{font-size:1rem;color:#1f1e1e;line-height:1.6;z-index:1;position:relative}@media screen and (max-width: 768px){.features-container h2{font-size:1.8rem}.feature-card{padding:2rem 1.5rem}.icon-box{font-size:2rem;padding:1rem}.feature-card h3{font-size:1.2rem}.feature-card p{font-size:.95rem}}@media screen and (max-width: 480px){.features-container{padding:3rem 1rem}.feature-card{padding:1.5rem}.icon-box{font-size:1.8rem;padding:.8rem}.feature-card h3{font-size:1.1rem}.feature-card p{font-size:.9rem}}.blog-container{max-width:1300px;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;background:linear-gradient(to bottom right,#f7f9fc,#e0f7ff);border-radius:1.5rem;padding:3rem 1rem;margin:3rem auto}.blog-heading{text-align:center;font-size:2.5rem;margin-bottom:2rem;color:#2c3e50}.card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.5rem}.blog-card{background:#e40b0be4;border-radius:1rem;padding:2rem;box-shadow:0 10px 25px #0000001a;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.2);transition:all .4s ease;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden}.blog-card:before{content:"";position:absolute;top:-20%;left:-20%;width:140%;height:140%;background:radial-gradient(circle at top left,#c2e9fb,#a1c4fd,transparent);z-index:0;opacity:.15;pointer-events:none;transition:opacity .4s ease}.blog-card:hover:before{opacity:.25}.blog-card h2{font-size:1.3rem;font-weight:600;color:#f2f4f5;z-index:1;position:relative;margin-bottom:1rem}.view-btn{padding:.6rem 1.4rem;background-color:#6c63ff;color:#fff;font-weight:600;font-size:.95rem;border:none;border-radius:30px;cursor:pointer;transition:background-color .3s ease,transform .2s ease;z-index:1;position:relative;align-self:flex-start}.view-btn:hover{background-color:#5548f0;transform:scale(1.05)}.pitch-container{max-width:900px;margin:0 auto}.pitch-card{background-color:#fff;padding:2.5rem;border-radius:1.2rem;box-shadow:0 12px 30px #0000000d;text-align:center;transition:all .3s ease}.pitch-card:hover{transform:translateY(-4px);box-shadow:0 16px 35px #00000014}.pitch-title{font-size:2rem;margin-bottom:1.5rem}.pitch-text{font-size:1.1rem;color:#555;line-height:1.8;margin-bottom:1rem;font-style:italic}.founder-name{font-weight:700;color:#444;margin-bottom:2rem}.video-wrapper{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:12px;box-shadow:0 8px 25px #00000014}.video-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;border-radius:12px}.modern-footer{background:linear-gradient(to right,#84d47f,#296c54);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);padding:60px 20px 30px;color:#fff;font-family:Poppins,sans-serif;border-top:1px solid rgba(255,255,255,.15)}.footer-inner{max-width:1200px;margin:auto;text-align:center}.footer-logo img{height:60px;margin-bottom:20px;transition:transform .3s ease}.footer-logo:hover img{transform:scale(1.1)}.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-bottom:30px;font-size:16px}.footer-links a{color:#fff;text-decoration:none;transition:color .3s;font-size:20px}.footer-links a:hover{color:#00ffae}.cta-button{background:#000;color:#f0fef5;border:none;padding:7px 15px;font-size:16px;border-radius:10px;font-weight:500;cursor:pointer;transition:transform .3s ease,box-shadow .3s ease}.cta-button:hover{transform:scale(1.05);box-shadow:0 8px 20px #00ffc84d}.footer-bottom{font-size:14px;opacity:.7;margin-top:20px}@media (max-width: 768px){.footer-links{flex-direction:column;gap:10px}.cta-button{width:100%;max-width:300px}.footer-logo img{height:50px}}.contact-container{max-width:600px;box-sizing:border-box;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;margin:60px auto;padding:20px;background-color:#f3f7fa;border-radius:12px;box-shadow:0 0 12px #0000001a}.contact-title{font-size:2rem;color:#2b4c7e;text-align:center;margin-bottom:10px}.contact-subtitle{font-size:1rem;text-align:center;color:#5c6b82;margin-bottom:30px}.contact-form{display:flex;flex-direction:column;gap:15px}.contact-form input,.contact-form textarea{padding:12px 15px;border:1px solid #d0d7df;border-radius:8px;font-size:1rem;outline:none;transition:border .3s}.contact-form input:focus,.contact-form textarea:focus{border-color:#2b4c7e}.contact-form button{padding:12px;background-color:#2b4c7e;color:#fff;border:none;border-radius:8px;font-size:1rem;cursor:pointer;transition:background-color .3s ease}.contact-form button:hover{background-color:#1e355a}.assistant-contact-box{margin-top:30px;padding:20px;background-color:#eaf0f7;border-left:6px solid #2b4c7e;border-radius:8px;color:#2b4c7e;box-shadow:0 2px 6px #0000000d}.assistant-contact-box h3{margin-bottom:10px;font-size:1.2rem;color:#1e355a}.assistant-contact-box p{margin:6px 0;font-size:1rem;color:#4a4a4a}@media (max-width: 600px){.contact-container{margin:20px;padding:15px}.contact-title{font-size:1.6rem}.contact-subtitle{font-size:.9rem}}.about-container{max-width:800px;margin:50px auto;padding:40px;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;background:linear-gradient(135deg,#ece9e6,#fff);color:#333;border-radius:16px;box-shadow:0 20px 40px #0000001a;transition:transform .3s ease}.about-container:hover{transform:scale(1.01)}.heading{color:#3b82f6;font-size:2rem;margin-top:40px;margin-bottom:16px;position:relative}.heading:after{content:"";display:block;width:60px;height:4px;background-color:#60a5fa;border-radius:2px;margin-top:6px}.paragraph{font-size:1.05rem;line-height:1.7;margin-bottom:30px;color:#555}@media screen and (max-width: 600px){.about-container{padding:20px}.heading{font-size:1.5rem}.paragraph{font-size:1rem}}.terms-container{display:flex;justify-content:center;padding:3rem 1rem;background:linear-gradient(145deg,#fdfbfb,#ebedee);min-height:100vh}.terms-card{background-color:#fff;border-radius:20px;box-shadow:0 10px 25px #00000014;max-width:800px;padding:40px;color:#333;line-height:1.7;transition:all .3s ease}.terms-card:hover{box-shadow:0 12px 30px #0000001a}.terms-card h1{font-size:2.5rem;color:#2b3c4e;margin-bottom:1.5rem;text-align:center;border-bottom:2px solid #ececec;padding-bottom:.5rem}.terms-card h2{font-size:1.5rem;color:#3a5067;margin-top:2rem}.terms-card p{margin-top:1rem;color:#555}@media (max-width: 768px){h1{font-size:2rem}.email-signup input{border-radius:25px;width:90%}.email-signup button{width:100%;border-radius:25px}.logo{flex-direction:column}.nav{flex-direction:column;gap:10px}.start-button{width:100%}.card-grid{grid-template-columns:1fr}.blog-card h2{font-size:1.1rem}.view-btn,.pitch-btn{font-size:.95rem}.pitch-card{padding:1.8rem}.pitch-title{font-size:1.6rem}.footer-top{flex-direction:column;align-items:flex-start;gap:10px}.footer-links{justify-content:flex-start;gap:10px}.footer-bottom{text-align:center}}@media (max-width: 480px){h1{font-size:1.8rem}p{font-size:1rem}.email-signup{flex-direction:column;align-items:stretch}.features-container{padding:2rem 1rem;gap:1rem}.feature-card{padding:1.5rem 1rem}.blog-heading,.pitch-title{font-size:1.6rem}.pitch-card{padding:1.5rem 1rem}.pitch-text{font-size:.95rem}.view-btn,.pitch-btn{width:100%;font-size:1rem;padding:.7rem}}
